CSS: fix flashing cursor by adding cursor:default to html element

Browser UA stylesheet sets cursor:auto on <html>, causing I-beam cursor to
flash on text content in Firefox/Safari even with body{cursor:default}.
Adding cursor:default to the html{} block in both CSS files ensures the
root element has explicit arrow cursor everywhere.
This commit is contained in:
Peter Foster
2026-02-22 11:52:05 +00:00
committed by Peter Foster
parent 4aae34075a
commit 0136ff95e2
2 changed files with 2 additions and 0 deletions

View File

@@ -7,6 +7,7 @@
html {
scroll-behavior: smooth;
cursor: default;
}
body {