add error squiggles to brush editor

gosh I hate this code. CSS custom highlight API when, pleeeeeease Firefooooox
This commit is contained in:
りき萌 2024-09-06 22:50:25 +02:00
parent c59a651ea3
commit ec773b7fe1
5 changed files with 259 additions and 45 deletions

View file

@ -14,6 +14,8 @@
--font-body: "Atkinson Hyperlegible", sans-serif;
--font-monospace: "Iosevka Hyperlegible", monospace;
--line-height: 1.5;
--line-height-em: 1.5em;
}
/* Reset */
@ -21,7 +23,7 @@
body {
margin: 0;
color: var(--color-text);
line-height: 1.5;
line-height: var(--line-height);
}
/* Fonts */
@ -37,7 +39,7 @@ button, textarea, input {
pre, code, textarea {
font-family: var(--font-monospace);
line-height: 1.5;
line-height: var(--line-height);
}
/* Buttons */