mirror of
https://github.com/scratchfoundation/scratchx.git
synced 2024-11-25 17:18:21 -05:00
26 lines
410 B
SCSS
26 lines
410 B
SCSS
|
table {
|
||
|
@include font-feature-settings("kern", "liga", "tnum");
|
||
|
border-collapse: collapse;
|
||
|
margin: $small-spacing 0;
|
||
|
table-layout: fixed;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
th {
|
||
|
border-bottom: 1px solid darken($base-border-color, 15%);
|
||
|
font-weight: 600;
|
||
|
padding: $small-spacing 0;
|
||
|
text-align: left;
|
||
|
}
|
||
|
|
||
|
td {
|
||
|
border-bottom: $base-border;
|
||
|
padding: $small-spacing 0;
|
||
|
}
|
||
|
|
||
|
tr,
|
||
|
td,
|
||
|
th {
|
||
|
vertical-align: middle;
|
||
|
}
|