From 8d20c5275403e2e1626408030f6829ff690bf2bb Mon Sep 17 00:00:00 2001 From: Zankaria Date: Sun, 18 Aug 2024 16:41:21 +0200 Subject: [PATCH] style.css: no post borders on small screens (they interfere with hovering and are shown sometimes) --- stylesheets/style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/stylesheets/style.css b/stylesheets/style.css index e0c37180..27dcb921 100644 --- a/stylesheets/style.css +++ b/stylesheets/style.css @@ -343,6 +343,11 @@ div.post.reply { border-width: 1px; border-style: none solid solid none; border-color: #B7C5D9; + + @media (max-width: 48em) { + border-left-style: none; + border-right-style: none; + } } span.trip {