From 8933f0a160f268be6b0049c51bd14141f3efcac0 Mon Sep 17 00:00:00 2001 From: litemotiv Date: Mon, 20 Jan 2025 23:50:27 +0100 Subject: [PATCH] Restore 2-column layout for 768px and higher resolution --- style.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index 5b8fce9..60285cc 100644 --- a/style.css +++ b/style.css @@ -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;