💄 move home button and story bible side-by-side, remove app title in sidebar

This commit is contained in:
TC
2026-06-09 23:09:23 +10:00
parent 46458beb8e
commit c5ab40b438
4 changed files with 52 additions and 91 deletions

View File

@@ -194,44 +194,40 @@
flex-direction: column;
}
.sidebar-home-btn {
.sidebar-nav {
display: flex;
align-items: center;
gap: 7px;
width: 100%;
padding: 8px 12px;
background: none;
border: none;
border-bottom: 1px solid var(--border);
color: var(--text-muted);
font-family: var(--font-sans);
font-size: 11px;
letter-spacing: 0.06em;
text-transform: uppercase;
cursor: pointer;
text-align: left;
transition: color 0.15s, background 0.15s;
flex-shrink: 0;
}
.sidebar-home-btn:hover {
.sidebar-nav-btn {
display: flex;
align-items: center;
justify-content: center;
padding: 8px 12px;
background: none;
border: none;
color: var(--text-muted);
cursor: pointer;
transition: color 0.15s, background 0.15s;
border-radius: 0;
}
.sidebar-nav-btn:hover {
color: var(--text-primary);
background: var(--active-bg);
}
.sidebar-home-btn.active {
.sidebar-nav-btn.active {
color: var(--accent);
}
.sidebar-home-icon {
.sidebar-nav-icon {
font-size: 14px;
line-height: 1;
}
.sidebar-home-label {
line-height: 1;
}
/* ─── Editor area ──────────────────────────────────────────────── */
.editor-area {
grid-row: 2;