mourningdove/htdocs/scss/components/tables-as-list.scss
2026-05-24 01:03:05 +00:00

32 lines
No EOL
487 B
SCSS

/* 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;
}
}
}
}