[frontend] min-width like this will break on small screens

This commit is contained in:
Lilian 2024-10-24 23:12:41 +02:00
parent cb1067d3d5
commit 194cbb97db
No known key found for this signature in database
2 changed files with 0 additions and 9 deletions

View file

@ -1,6 +1,5 @@
.root-note {
max-width: 45rem;
min-width: 25rem;
background-color: var(--foreground-color);
width: 100%;
padding-bottom: 1rem;

View file

@ -123,7 +123,6 @@ input, textarea, select {
background-color: var(--foreground-color);
border: none;
outline: none;
min-width: 20em;
max-width: 50em;
border-radius: 0.5em;
padding: 0.5em;
@ -132,13 +131,6 @@ input, textarea, select {
}
/* This is hella wonky and I have no idea how to make it behave but but oh well 🥴 */
@media (max-width: 1000px) {
input, textarea, select {
min-width: 11.233em;
}
}
select:after {
padding-right: 0.5em;
}