From 97e4f4c4242976d21af7fc73f26b706abee7c949 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Thu, 8 Jan 2026 11:40:55 +0100 Subject: [PATCH] :bug: Fix long project name visual problem on dashboard --- frontend/src/app/main/ui/dashboard/projects.scss | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/frontend/src/app/main/ui/dashboard/projects.scss b/frontend/src/app/main/ui/dashboard/projects.scss index 173a487f8b..07a6a4c550 100644 --- a/frontend/src/app/main/ui/dashboard/projects.scss +++ b/frontend/src/app/main/ui/dashboard/projects.scss @@ -84,12 +84,15 @@ .project-name { @include t.use-typography("body-large"); - width: fit-content; - margin-inline-end: var(--sp-m); - line-height: 0.8; color: var(--title-foreground-color-hover); cursor: pointer; height: var(--sp-l); + line-height: 0.8; + margin-inline-end: var(--sp-m); + overflow: hidden; + text-overflow: ellipsis; + width: fit-content; + white-space: nowrap; } .info-wrapper {