On the element, the --pico-font-size variable is set. But the actual font-size attribute is left unchanged, so the value set by the user-agent is used instead. This is smaller, which is slightly smaller than the 0.875em set in the variable.
This can be fixed by simply resetting font-size: var(--pico-font-size).
On the element, the
--pico-font-size
variable is set. But the actualfont-size
attribute is left unchanged, so the value set by the user-agent is used instead. This issmaller
, which is slightly smaller than the0.875em
set in the variable.This can be fixed by simply resetting
font-size: var(--pico-font-size)
.