mirror of
https://github.com/danbee/chess
synced 2025-03-04 08:39:06 +00:00
29 lines
313 B
SCSS
29 lines
313 B
SCSS
table {
|
|
border-collapse: collapse;
|
|
table-layout: fixed;
|
|
text-align: left;
|
|
width: 100%;
|
|
}
|
|
|
|
thead {
|
|
line-height: $heading-line-height;
|
|
vertical-align: bottom;
|
|
}
|
|
|
|
tbody {
|
|
vertical-align: top;
|
|
}
|
|
|
|
tr {
|
|
border-bottom: $base-border;
|
|
}
|
|
|
|
th {
|
|
font-weight: 600;
|
|
}
|
|
|
|
th,
|
|
td {
|
|
padding: $x-small-spacing;
|
|
}
|