Fix studio topbar title wrapping when sidebar is open

Prevent multi-line title by adding ellipsis truncation and min-width
constraints on the topbar-left container.
This commit is contained in:
Pier-Jean Malandrino 2026-04-02 16:39:08 +02:00
parent c60407f7a2
commit 126c41a033

View file

@ -551,12 +551,17 @@ onBeforeUnmount(() => {
display: flex;
align-items: center;
gap: 20px;
min-width: 0;
}
.topbar-title {
font-size: 15px;
font-weight: 600;
color: var(--text);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
min-width: 0;
}
.mode-toggle {