Merge pull request #66 from litemotiv/fix_layout

Restore 2-column layout for 768px and higher resolution
This commit is contained in:
deepend-tildeclub 2025-01-20 17:27:59 -07:00 committed by GitHub
commit 0450221613
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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;