mourningdove/htdocs/scss/components/foundation-custom/_tables.scss

24 lines
533 B
SCSS
Raw Permalink Normal View History

2026-05-24 01:03:05 +00:00
$include-html-table-classes: false;
@import 'foundation/components/tables';
// You can opt into Foundation-styled tables by adding class `table`, but
// turning them on by default makes a dumb mess (just due to the site's nature).
table.table {
@include table;
th[scope="row"] {
text-align: left;
}
th label {
color: $table-head-font-color;
}
}
// Alternately, here's the padding the old site skins used.
table:not(.table, .picker__table) {
td, th {
padding: 0.2em 0.8em;
}
}