From 74117a5520643c001a95e28090535105c49182fa Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Tue, 31 Dec 2024 11:57:33 +0200 Subject: [PATCH] notifications overflow fix --- src/components/mobile_nav/mobile_nav.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/mobile_nav/mobile_nav.vue b/src/components/mobile_nav/mobile_nav.vue index b737155e5..d5539ad89 100644 --- a/src/components/mobile_nav/mobile_nav.vue +++ b/src/components/mobile_nav/mobile_nav.vue @@ -202,6 +202,9 @@ .title { font-size: 1.3em; margin-left: 0.6em; + white-space: nowrap; + overflow-x: hidden; + text-overflow: ellipsis; } }