fix: add display flex to pdir-panel, use accent-purple-rgb variable

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
James Smith
2026-05-21 12:49:54 +01:00
parent 2e583649d0
commit fd3ad63971
2 changed files with 3 additions and 1 deletions
+2 -1
View File
@@ -46,6 +46,7 @@
/* ---- Directory panel (left side of split) ---- */
.pdir-panel {
display: flex;
width: 200px;
flex-shrink: 0;
border-right: 1px solid var(--border-color);
@@ -102,7 +103,7 @@
flex-shrink: 0;
}
.pdir-proto--p { background: rgba(var(--accent-cyan-rgb), 0.15); color: var(--accent-cyan); }
.pdir-proto--f { background: rgba(143, 123, 214, 0.15); color: var(--accent-purple); }
.pdir-proto--f { background: rgba(var(--accent-purple-rgb), 0.15); color: var(--accent-purple); }
.pdir-addr {
font-size: var(--text-xs);
+1
View File
@@ -45,6 +45,7 @@
--accent-amber-dim: rgba(214, 168, 94, 0.18);
--accent-yellow: #e1c26b;
--accent-purple: #8f7bd6;
--accent-purple-rgb: 143, 123, 214;
/* Text hierarchy */
--text-primary: #d7e0ee;