2022-12-17 18:41:44 +00:00
|
|
|
/* TODO: Not currently used */
|
|
|
|
@media screen and (max-width: 480px) {
|
|
|
|
.table-scroller {
|
|
|
|
overflow-x: auto;
|
|
|
|
width: 320px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table {
|
|
|
|
margin: auto;
|
|
|
|
width: 80%;
|
2023-01-29 18:44:51 +00:00
|
|
|
display: table;
|
|
|
|
|
|
|
|
& thead {
|
|
|
|
border: 2px solid $dark;
|
|
|
|
}
|
2022-12-17 18:41:44 +00:00
|
|
|
|
|
|
|
& td {
|
|
|
|
padding: 0.5em 1em;
|
|
|
|
border: 1px solid $dark;
|
|
|
|
}
|
|
|
|
}
|
2023-05-20 03:50:50 +00:00
|
|
|
|
|
|
|
td[colspan] {
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
& h3 {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|