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 {
|
.compactMode .nodeRow {
|
||||||
padding: 0 4px;
|
padding: 0 2px;
|
||||||
gap: 3px;
|
gap: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.compactMode .nodeName {
|
.compactMode .nodeName {
|
||||||
|
|
@ -595,15 +595,19 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.compactMode .emojiBtn {
|
.compactMode .emojiBtn {
|
||||||
width: 18px;
|
width: 15px;
|
||||||
font-size: 11px;
|
font-size: 10px;
|
||||||
padding: 0 1px;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.compactMode .nodeActionBtn {
|
.compactMode .nodeActionBtn {
|
||||||
width: 18px;
|
width: 15px;
|
||||||
height: 18px;
|
height: 15px;
|
||||||
font-size: 12px;
|
font-size: 11px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.compactMode .nodeActionsPersistent {
|
||||||
|
gap: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Dark theme */
|
/* Dark theme */
|
||||||
|
|
|
||||||
|
|
@ -75,7 +75,7 @@ export const WorkspacePage: React.FC<WorkspacePageProps> = ({ persistentInstance
|
||||||
}>();
|
}>();
|
||||||
const [leftCollapsed, setLeftCollapsed] = useState(false);
|
const [leftCollapsed, setLeftCollapsed] = useState(false);
|
||||||
const [rightCollapsed, setRightCollapsed] = 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 _rightResize = _useResizable(320, 200, 500);
|
||||||
const [rightTab, setRightTab] = useState<RightTab>('activity');
|
const [rightTab, setRightTab] = useState<RightTab>('activity');
|
||||||
const [udbTab, setUdbTab] = useState<UdbTab>('chats');
|
const [udbTab, setUdbTab] = useState<UdbTab>('chats');
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue