components/sass/table/_index.scss
ポール ウェッブ df02f2fbd9 WIP
2019-02-06 17:41:44 -06:00

44 lines
565 B
SCSS

table {
width: 100%;
background-color: $lbry-white;
position: relative;
thead {
cursor: default;
position: relative;
tr {
position: relative;
z-index: 1;
}
}
tbody {
line-height: 1.55;
}
tr {
&:not(:last-of-type) {
td {
border-bottom: 1px solid $lbry-gray-1;
}
}
}
th,
td {
padding: 0.5rem 1rem;
}
th {
border-bottom: 2px solid $lbry-black;
letter-spacing: 0.1rem;
text-align: left;
text-transform: uppercase;
}
a {
font-weight: bolder;
}
}