From f81e6feeca7446374e9d38182e84e8dfbcf4f513 Mon Sep 17 00:00:00 2001 From: Aevann Date: Sat, 18 Feb 2023 21:32:37 +0200 Subject: [PATCH] add a max height for individial tags inside comments so this doesnt happen again https://stupidpol.site/h/meta/post/147023/poll-whos-ur-favorite-rdrama-train/3587461#context --- files/assets/css/main.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/files/assets/css/main.css b/files/assets/css/main.css index 5ed12b5a8..844eb2cbf 100644 --- a/files/assets/css/main.css +++ b/files/assets/css/main.css @@ -6608,3 +6608,10 @@ body { sub, sup { color: var(--black) !important; } + +@media (max-width: 768px) { + .comment-text * { + max-height: 50vh; + overflow: auto; + } +}