mirror of
https://github.com/Psychotoxical/psysonic.git
synced 2026-07-22 07:15:47 +00:00
18bf3adb1f
layout.css (3209 LOC) → 29 per-section files in src/styles/layout/ + an index.css that imports them in original cascade order. Same mechanic as theme.css + components.css splits: top-level sections detected by single-dash or 3+ dash header decoration. Concatenating in @import order reproduces the original byte stream (+1 trailing newline, cosmetic). Generated via /tmp/split-layout-css.mjs.
17 lines
331 B
CSS
17 lines
331 B
CSS
/* ─── Content Header — Mobile ─── */
|
|
.app-shell[data-mobile] .content-header {
|
|
padding: 0 var(--space-4);
|
|
height: 52px;
|
|
gap: var(--space-3);
|
|
}
|
|
|
|
/* Hide queue toggle on mobile */
|
|
.app-shell[data-mobile] .queue-toggle-btn {
|
|
display: none;
|
|
}
|
|
|
|
.app-shell[data-mobile] .resizer-queue-handle {
|
|
display: none;
|
|
}
|
|
|