move box-sizing to both textarea AND input

This commit is contained in:
Wirlaburla 2024-03-12 12:10:03 -05:00
parent d49352be88
commit 6c4b6ef1b3

View File

@ -50,6 +50,9 @@ table {
textarea {
resize: vertical;
width: 100%;
}
textarea, input {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;