Improve text color declaration to inherit from html.

This commit is contained in:
voussoir 2021-01-07 19:24:17 -08:00
parent fb126a0540
commit 47db917090

View file

@ -23,15 +23,15 @@ html
{
height: 100vh;
box-sizing: border-box;
color: var(--color_text_normal);
}
*, *:before, *:after
{
box-sizing: inherit;
color: inherit;
}
* { color: var(--color_text_normal); }
body
{
display: grid;