components/sass/table/_index.scss

45 lines
565 B
SCSS
Raw Normal View History

2019-02-06 01:03:03 +01:00
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;
}
2019-02-07 00:41:44 +01:00
tr {
&:not(:last-of-type) {
td {
border-bottom: 1px solid $lbry-gray-1;
}
}
2019-02-06 01:03:03 +01:00
}
th,
td {
padding: 0.5rem 1rem;
}
th {
2019-02-07 00:41:44 +01:00
border-bottom: 2px solid $lbry-black;
2019-02-06 01:03:03 +01:00
letter-spacing: 0.1rem;
text-align: left;
text-transform: uppercase;
}
a {
font-weight: bolder;
}
}