fix: UDB icons more compact (15px), remove maxWidth limit (450->800), tighter row gap
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
parent
aa982680fa
commit
e94420dfe9
2 changed files with 13 additions and 9 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
|
|
@ -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');
|
||||
|
|
|
|||
Loading…
Reference in a new issue