From 2814a4788aef1d646fd76204b94db382b3c14942 Mon Sep 17 00:00:00 2001 From: Michael Czechowski Date: Tue, 30 Dec 2025 20:17:37 +0100 Subject: [PATCH] style: only truncate module name on mobile - Remove max-width from desktop - Apply truncation only in mobile media query --- src/main.css | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/main.css b/src/main.css index 27f626c..b53b672 100644 --- a/src/main.css +++ b/src/main.css @@ -245,10 +245,6 @@ code, kbd { .module-name { text-transform: uppercase; letter-spacing: 0.5px; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - max-width: 120px; } .module-pill .level-indicator { @@ -1086,6 +1082,9 @@ input:checked + .toggle-slider::before { } .module-name { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; max-width: 80px; }