LibWeb: Don't set initial font+color on both HTML and BODY elements

It's enough to set it on the HTML element. That way, it doesn't get
reset in content that sets its own font on HTML but not on BODY.
This commit is contained in:
Andreas Kling 2022-09-15 15:56:40 +02:00
parent 1dd4e2dc87
commit d1dac8695c
Notes: sideshowbarker 2024-07-17 07:08:56 +09:00

View File

@ -1,4 +1,4 @@
html, body {
html {
font-family: sans-serif;
color: -libweb-palette-base-text;
}