From 194cbb97db04f71e0eac522d0e9c479b5becf724 Mon Sep 17 00:00:00 2001 From: Lilian Date: Thu, 24 Oct 2024 23:12:41 +0200 Subject: [PATCH] [frontend] min-width like this will break on small screens --- Iceshrimp.Frontend/Pages/SingleNote.razor.css | 1 - Iceshrimp.Frontend/wwwroot/css/app.css | 8 -------- 2 files changed, 9 deletions(-) diff --git a/Iceshrimp.Frontend/Pages/SingleNote.razor.css b/Iceshrimp.Frontend/Pages/SingleNote.razor.css index 78599ea9..69869e74 100644 --- a/Iceshrimp.Frontend/Pages/SingleNote.razor.css +++ b/Iceshrimp.Frontend/Pages/SingleNote.razor.css @@ -1,6 +1,5 @@ .root-note { max-width: 45rem; - min-width: 25rem; background-color: var(--foreground-color); width: 100%; padding-bottom: 1rem; diff --git a/Iceshrimp.Frontend/wwwroot/css/app.css b/Iceshrimp.Frontend/wwwroot/css/app.css index b67be1a3..12f4d115 100644 --- a/Iceshrimp.Frontend/wwwroot/css/app.css +++ b/Iceshrimp.Frontend/wwwroot/css/app.css @@ -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; }