Skip to main content

max / makenotwork

Close the components layer at EOF, not 74 lines early `@layer components {` opens at line 126 and was closed by a stray `}` at 10983, so the last 74 lines (DESCRIBED MODAL, MEDIA PICKER) were unlayered and outranked every named layer unconditionally. That is exactly the accident this file's own header says adopting `components` fixed. A visual no-op today: `components` already sits after `makeover` in the declared order, `responsive` is declared and empty, and the only other unlayered rules are the per-request creator theme block theming.rs injects, which is a `:root` token block matching none of these 74 lines. Separate from the split that follows so the split stays byte-identical and this one cascade-touching change is isolated.
Co-Authored-By
Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session
https://claude.ai/code/session_01EEmeiSJnmyL98QzA5Dwsvz
Author: Max Johnson <me@maxj.phd> · 2026-09-05 03:09 UTC
Signed with PGP, not checked
Commit: fc54f0f84303bc3c581e0443d4b05e9d06c74be1
Parent: 4721d2a
1 file changed, +1 insertion, -1 deletion
@@ -10980,7 +10980,6 @@
10980 10980 /* respec-ok: a layer handoff, not a value. */
10981 10981 color: revert-layer;
10982 10982 }
10983 - }
10984 10983
10985 10984 /* ===========================================
10986 10985 DESCRIBED MODAL (quasi RegionKind::Modal)
@@ -11055,3 +11054,4 @@
11055 11054 [data-widget="media-picker-grid"] .picture-img {
11056 11055 max-height: 80px;
11057 11056 }
11057 + }