Remove default textarea padding

<textarea>s have a 2px padding on both Chrome & Firefox. <pre>s,
however, don't, which makes for miniscule text jumps between index.html
& paste.html.
This commit is contained in:
Egor Tensin 2023-12-24 00:59:26 +01:00 committed by jordan
parent 06513b7095
commit 8dd038bc60
1 changed files with 1 additions and 0 deletions

View File

@ -10,6 +10,7 @@
background: none;
border: none;
outline: 0;
padding: 0;
resize: none;
overflow: auto;