mirror of
https://github.com/danbee/chess
synced 2025-03-04 08:39:06 +00:00
30 lines
370 B
SCSS
30 lines
370 B
SCSS
table {
|
|
border-collapse: collapse;
|
|
margin: $base-spacing 0;
|
|
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: $small-spacing $small-spacing $small-spacing 0;
|
|
}
|