🔧 Updated css defaults

This commit is contained in:
z3rOR0ne 2024-02-09 03:18:53 -08:00
parent accd0ef8d7
commit 87e248123b
2 changed files with 12 additions and 3 deletions

View file

@ -4,8 +4,6 @@
*::before,
*::after {
box-sizing: border-box;
/* From Theo's channel */
min-width: 0;
}
/* kevin uses html here,
@ -33,3 +31,10 @@ video {
max-width: 100%;
display: block;
}
/* TheoGG recommends this under '*',
* but kevin says differently */
input,
textarea {
min-width: 0;
}

View file

@ -5,7 +5,6 @@ cat <<EOM
*::before,
*::after {
box-sizing: border-box;
min-width: 0;
}
:root {
@ -29,4 +28,9 @@ video {
max-width: 100%;
display: block;
}
input,
textarea {
min-width: 0;
}
EOM