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

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;