From fff0f4344c9210254b873232c349cf859e12f50c Mon Sep 17 00:00:00 2001 From: zebrapurring <103900164+zebrapurring@users.noreply.github.com> Date: Fri, 28 Jun 2024 20:27:02 +0200 Subject: [PATCH] Fix overflow caused by long URL tooltips (#73) * Fix overflow caused by long URL tooltips * Break URL tooltips to prevent horizontal page overflows --------- Co-authored-by: zebrapurring <> Co-authored-by: Matt Kilgore --- frontend/assets/css/main.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/assets/css/main.css b/frontend/assets/css/main.css index 89b2e1cf..7fad7275 100644 --- a/frontend/assets/css/main.css +++ b/frontend/assets/css/main.css @@ -6,6 +6,10 @@ text-transform: none !important; } +.tooltip { + overflow-wrap: break-word; +} + /* transparent subtle scrollbar */ ::-webkit-scrollbar { width: 0.2em;