Improve text color declaration to inherit from html.
This commit is contained in:
parent
fb126a0540
commit
47db917090
1 changed files with 2 additions and 2 deletions
|
@ -23,15 +23,15 @@ html
|
||||||
{
|
{
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
color: var(--color_text_normal);
|
||||||
}
|
}
|
||||||
|
|
||||||
*, *:before, *:after
|
*, *:before, *:after
|
||||||
{
|
{
|
||||||
box-sizing: inherit;
|
box-sizing: inherit;
|
||||||
|
color: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
* { color: var(--color_text_normal); }
|
|
||||||
|
|
||||||
body
|
body
|
||||||
{
|
{
|
||||||
display: grid;
|
display: grid;
|
||||||
|
|
Loading…
Reference in a new issue