fix: UDB icons more compact (15px), remove maxWidth limit (450->800), tighter row gap
Some checks failed
Deploy Nyla Frontend to Production / deploy (push) Failing after 30s
Deploy Nyla Frontend to Integration / deploy (push) Failing after 53s

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
ValueOn AG 2026-06-02 09:11:26 +02:00
parent aa982680fa
commit e94420dfe9
2 changed files with 13 additions and 9 deletions

View file

@ -574,8 +574,8 @@
}
.compactMode .nodeRow {
padding: 0 4px;
gap: 3px;
padding: 0 2px;
gap: 2px;
}
.compactMode .nodeName {
@ -595,15 +595,19 @@
}
.compactMode .emojiBtn {
width: 18px;
font-size: 11px;
padding: 0 1px;
width: 15px;
font-size: 10px;
padding: 0;
}
.compactMode .nodeActionBtn {
width: 18px;
height: 18px;
font-size: 12px;
width: 15px;
height: 15px;
font-size: 11px;
}
.compactMode .nodeActionsPersistent {
gap: 0;
}
/* Dark theme */

View file

@ -75,7 +75,7 @@ export const WorkspacePage: React.FC<WorkspacePageProps> = ({ persistentInstance
}>();
const [leftCollapsed, setLeftCollapsed] = useState(false);
const [rightCollapsed, setRightCollapsed] = useState(false);
const _leftResize = _useResizable(280, 200, 450);
const _leftResize = _useResizable(280, 200, 800);
const _rightResize = _useResizable(320, 200, 500);
const [rightTab, setRightTab] = useState<RightTab>('activity');
const [udbTab, setUdbTab] = useState<UdbTab>('chats');