Files
Artificers-Scrollwork/src/components/layout/RightPanel.module.css
whitlocktech 285ba5b3af
Some checks failed
Build and Release / build (push) Failing after 1m37s
added updater and fixed fonts
2026-06-12 21:21:45 -05:00

59 lines
945 B
CSS

.panel {
width: 320px;
flex-shrink: 0;
background: var(--bg-panel);
border-left: 1px solid var(--border);
overflow-y: auto;
display: flex;
flex-direction: column;
}
.section {
padding: 12px;
border-bottom: 1px solid var(--border);
}
.sectionTitle {
font-size: 0.6875em;
color: var(--accent-gold);
letter-spacing: 0.08em;
margin-bottom: 10px;
text-transform: uppercase;
}
.propList {
display: flex;
flex-direction: column;
gap: 4px;
}
.propRow {
display: flex;
justify-content: space-between;
font-size: 0.8125em;
}
.propLabel {
color: var(--text-secondary);
}
.propValue {
color: var(--text-primary);
font-family: 'JetBrains Mono', monospace;
font-size: 0.75em;
}
.subTitle {
font-size: 0.625em;
color: var(--text-muted);
letter-spacing: 0.06em;
text-transform: uppercase;
margin: 10px 0 6px;
}
.empty {
color: var(--text-muted);
font-size: 0.8125em;
font-style: italic;
}