From 11467775b67b611c495524e9ae09a9f0c95f8883 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Mon, 8 Dec 2025 22:09:46 +0200 Subject: [PATCH] feat(breadcrumb): basic overflow support --- apps/client/src/widgets/Breadcrumb.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/apps/client/src/widgets/Breadcrumb.css b/apps/client/src/widgets/Breadcrumb.css index 12ee1c759..df9f5c6f0 100644 --- a/apps/client/src/widgets/Breadcrumb.css +++ b/apps/client/src/widgets/Breadcrumb.css @@ -5,10 +5,18 @@ align-items: center; font-size: 0.9em; gap: 0.25em; + flex-wrap: nowrap; + overflow: hidden; a { color: inherit; text-decoration: none; + width: 100%; + max-width: 200px; + text-overflow: ellipsis; + white-space: nowrap; + overflow: hidden; + display: block; } ul {