21 lines
318 B
SCSS
21 lines
318 B
SCSS
|
.table {
|
||
|
width: 100%;
|
||
|
border-collapse: collapse;
|
||
|
}
|
||
|
|
||
|
.table th,
|
||
|
.table td {
|
||
|
text-align: left;
|
||
|
vertical-align: top;
|
||
|
border-top: 1px solid $tableBorderColour;
|
||
|
padding: ($marginBottom / 2) * 1px 10px;
|
||
|
}
|
||
|
|
||
|
.table th {
|
||
|
font-weight: bold;
|
||
|
border-top: 0;
|
||
|
}
|
||
|
|
||
|
.table thead th {
|
||
|
vertical-align: bottom;
|
||
|
}
|