I haven't seen anyone mention this, apologies in advance if this is already known, but the link number in the .link::after pseudo element doesn't properly scale with screen width, causing larger links to be cut offffff
Adding font-size: clamp(5rem, 20.5vw, 11rem); bottom: -6vw; (or something to that effect) makes it scale like I think would be the desired effectttt?
Here's a comparison of what it currently looks like, VS my userstyle with my font-size changes~
I haven't seen anyone mention this, apologies in advance if this is already known, but the link number in the
.link::after
pseudo element doesn't properly scale with screen width, causing larger links to be cut offffff Addingfont-size: clamp(5rem, 20.5vw, 11rem); bottom: -6vw;
(or something to that effect) makes it scale like I think would be the desired effectttt?Here's a comparison of what it currently looks like, VS my userstyle with my font-size changes~