Skip to content

Commit 3aefbb3

Browse files
igalklebanovclaude
andcommitted
fix(site): wall hover arrow loses to extracted-CSS order in production.
The base arrow rule and its hover override tied at specificity (0,2,2), so whichever the extractor emitted last won; production chunk order emitted the hover rule first and the accent never applied. Out-specify the base instead of tying with it, same medicine as a.stat above. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
1 parent 003e00d commit 3aefbb3

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

site/src/pages/index.module.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,9 @@ a.stat:hover .statValue {
371371
transition: color 0.15s ease;
372372
}
373373

374-
.productionNames a:hover::after {
374+
/* Must out-specify the base rule above, not tie with it: extracted-CSS
375+
order flips between dev and production builds. */
376+
.productionNames a:not(.productionCTA):hover::after {
375377
color: var(--kl-acc);
376378
}
377379

0 commit comments

Comments
 (0)