In response to blip #133867
SNPtheCat said:
Font size for >=1 works, fractional doesn't
Font size has no effect
have you messed around with the feather/blur radius of filter:drop-shadow()? that's...
....................this value -v { filter: drop-shadow(black 0 0 1px) }
stacking a few of those looks alright. if you only can only use whole pixel values for that as well, you can do something like this:
svg, .nav-logo a.nav-logo-link { filter: drop-shadow(var(--color-section) 0 0 1px) drop-shadow(var(--color-section) 0 0 1px) drop-shadow(var(--color-section) 0 0 1px); }
with smaller values and more stacked shadows it looks slightly more like a clean stroke. (but again, multiple filters tends to cause lag, especially with complex SVG)