Added table collapsing

This commit is contained in:
2019-05-29 08:47:20 +10:00
parent 6e0aaa7b9e
commit 799998c5bf
2 changed files with 29 additions and 17 deletions
+12
View File
@@ -232,6 +232,14 @@ footer {
.row {
flex: 1;
display: flex;
flex-direction: row;
justify-content: flex-start;
}
@media screen and (max-width: 480px) {
.row {
flex-direction: column;
}
}
.col {
@@ -250,4 +258,8 @@ footer {
background-color: lightblue;
margin-top: 1em;
margin-bottom: 2em;
}
.minWidth { /* hacky */
min-width: 80px;
}