From 86632d2ed1f8853d948f50c6d8ce7c5d942dd2f3 Mon Sep 17 00:00:00 2001 From: OhItsTom <22730962+ohitstom@users.noreply.github.com> Date: Mon, 28 Oct 2024 14:37:02 +0000 Subject: [PATCH] Fix line-breaking issue in navbar.scss --- Comfy/assets/_navbar.scss | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Comfy/assets/_navbar.scss b/Comfy/assets/_navbar.scss index 289232e..3d32275 100644 --- a/Comfy/assets/_navbar.scss +++ b/Comfy/assets/_navbar.scss @@ -32,4 +32,14 @@ .os-scrollbar { display: none; } + + // Forcing line-breaking on long text; + #Desktop_LeftSidebar_Id { + .main-yourLibraryX-entryPoints { + span.LineClamp { + -webkit-line-clamp: 1 !important; + line-clamp: 1 !important; + } + } + } } \ No newline at end of file