Restore 2-column layout for 768px and higher resolution

This commit is contained in:
litemotiv 2025-01-20 23:50:27 +01:00
parent 3d686c3fb3
commit 8933f0a160
1 changed files with 8 additions and 1 deletions

View File

@ -188,7 +188,14 @@ blockquote {
padding: 0.5em;
}
/* Mobile */
@media (min-width: 768px) {
.row {
display: flex;
flex-wrap: nowrap;
flex-direction: row-reverse;
}
}
@media (max-width: 768px) {
td {
display: block;