html {
font-size: 62.5%;
}
body {
font-size: 1.6rem;
}
because it's then really easy to use rem or em unit by thinking in pixels and having to divide by 10 and not having to use a calc or a mixin in a preprocessor.
The extension sets body>dialog to 0.9rem thus gives 9px like in our site https://www.alsacreations.com (screenshot below):
I'd suggest using em unit (or maybe font-size: inherit;, equivalent to 1em here) in #a11y-outline { font-size: 0.9em) would fix this problem because dialog is a direct descendant of body.
… which are countless doing:
because it's then really easy to use rem or em unit by thinking in pixels and having to divide by 10 and not having to use a calc or a mixin in a preprocessor.
The extension sets
body>dialog
to 0.9rem thus gives 9px like in our site https://www.alsacreations.com (screenshot below):I'd suggest using em unit (or maybe
font-size: inherit;
, equivalent to 1em here) in #a11y-outline { font-size: 0.9em) would fix this problem because dialog is a direct descendant of body.