mourningdove/htdocs/scss/components/tables-as-list.scss

32 lines
487 B
SCSS
Raw Normal View History

2026-05-24 01:03:05 +00:00
/* rough way to make certain tables display as a list on smaller screens */
@import "foundation/base";
.table-as-list {
thead {
display: none;
}
tbody {
td, th {
display: block;
}
}
ul {
margin: 0;
}
}
@media #{$small} {
.table-as-list {
thead {
display: table-header-group;
}
tbody {
td, th {
display: table-cell;
}
}
}
}