Re-add borders to version table

This commit is contained in:
lifehackerhansol 2022-01-11 16:08:27 -08:00
parent dc69281677
commit 1003c1253d

View file

@ -9,6 +9,7 @@ table {
font-family: $global-font-family; font-family: $global-font-family;
font-size: $type-size-6; font-size: $type-size-6;
border-collapse: collapse; border-collapse: collapse;
border: 1px solid $light-gray; // guide-specific
overflow-x: auto; overflow-x: auto;
& + table { & + table {
@ -18,18 +19,24 @@ table {
thead { thead {
background-color: $border-color; background-color: $border-color;
border-bottom: 2px solid mix(#000, $border-color, 25%); // border-bottom: 2px solid mix(#000, $border-color, 25%);
// guide-specific
border-bottom: 1px solid $light-gray;
} }
th { th {
padding: 0.5em; padding: 0.5em;
font-weight: bold; font-weight: bold;
text-align: left; text-align: left;
border-right: 1px solid $light-gray; // guide-specific
} }
td { td {
padding: 0.5em; padding: 0.5em;
border-bottom: 1px solid mix(#000, $border-color, 25%); // border-bottom: 1px solid mix(#000, $border-color, 25%);
// guide-specific
border-bottom: 1px solid $light-gray;
border-right: 1px solid $light-gray;
} }
tr, tr,