fix: adjust LinksGrid nth-child offsets for earlier, more frequent color pops

Shift pop-b and pop-c selectors so accent colors appear sooner in the
grid and the light/white pop-c repeats more frequently (every 5th
instead of every 7th item).
This commit is contained in:
2026-04-11 21:34:23 +02:00
parent a8f07ad800
commit cfd1d953fb
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -17,10 +17,10 @@
:global(.links_grid a:nth-child(3n+1) svg:not(.lock-icon)) {
fill: var(--grid-fill-pop-a);
}
:global(.links_grid a:nth-child(5n+3) svg:not(.lock-icon)) {
:global(.links_grid a:nth-child(5n+2) svg:not(.lock-icon)) {
fill: var(--grid-fill-pop-b);
}
:global(.links_grid a:nth-child(7n) svg:not(.lock-icon)) {
:global(.links_grid a:nth-child(5n+4) svg:not(.lock-icon)) {
fill: var(--grid-fill-pop-c);
}