Fix textarea padding in Safari

Use `box-sizing: border-box` to include padding in the width of the textarea.

Also,
> Box-sizing should be border-box by default
from [csswg](https://wiki.csswg.org/ideas/mistakes)
This commit is contained in:
Rithas K 2024-06-02 11:53:40 +05:30
parent 408d244471
commit e5962ebfe7
No known key found for this signature in database

View file

@ -25,6 +25,10 @@
--textarea-border-dark: #454545; --textarea-border-dark: #454545;
} }
* {
box-sizing: border-box;
}
body { body {
color: var(--text-light); color: var(--text-light);
background-color: var(--bg-light); background-color: var(--bg-light);