Compare commits

...

1 Commits

Author SHA1 Message Date
869f9d12c8 Add a shortcode for folding rows of a table on small screens 2022-09-10 17:20:54 -07:00
2 changed files with 9 additions and 6 deletions

View File

@@ -149,22 +149,24 @@ table {
padding: 0.5rem;
}
tr {
.fold-table + table {
tr {
@include below-container-width {
display: flex;
flex-direction: column;
}
}
}
td {
@include below-container-width {
overflow-x: auto;
}
padding: 0.5rem;
}
th {
td, th {
padding: 0.5rem;
vertical-align: top;
}
div.highlight tr {

View File

@@ -0,0 +1 @@
<span class="fold-table"></span>