feat(v3): redesign project workspace layout + emoji icons

- ProjectBox: CSS grid layout (header|session|terminal zones)
- AgentPane: bottom-anchored prompt, full-width form
- Icons: emoji replacing Nerd Font codepoints (cross-platform)
- SettingsTab: emoji picker grid (24 icons, 8-column popup)
- CSS: px to rem conversions across ProjectGrid, TerminalTabs, ProjectBox
This commit is contained in:
Hibryda 2026-03-08 02:15:34 +01:00
parent b8001dc56c
commit 5c657d0daa
6 changed files with 128 additions and 52 deletions

View file

@ -553,18 +553,17 @@
.prompt-area {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
justify-content: flex-end;
height: 100%;
padding: 24px;
padding: 1rem;
}
.prompt-form {
display: flex;
flex-direction: column;
gap: 8px;
gap: 0.5rem;
width: 100%;
max-width: 600px;
}
.prompt-input {
@ -942,8 +941,7 @@
/* Session toolbar */
.session-toolbar {
width: 100%;
max-width: 600px;
margin-bottom: 8px;
margin-bottom: 0.5rem;
}
.toolbar-row {