From dfc8a1e8723acfd74c26559d4ffe1ddd3d9733d1 Mon Sep 17 00:00:00 2001 From: Josiah Ivey Date: Thu, 20 Jun 2024 14:07:35 -0700 Subject: [PATCH 1/2] remove min-width from #root --- src/index.css | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/index.css b/src/index.css index 14c43a1320..6aeb22e689 100644 --- a/src/index.css +++ b/src/index.css @@ -29,10 +29,6 @@ noscript { } } -#root { - min-width: 30.4rem; -} - * { box-sizing: border-box; } From 96fb5d186897943c4cf0e0a745b713101c769bbb Mon Sep 17 00:00:00 2001 From: Josiah Ivey Date: Fri, 12 Jul 2024 07:08:02 -0700 Subject: [PATCH 2/2] update min width to not hide search toolbar --- src/index.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/index.css b/src/index.css index 6aeb22e689..48a483dfa9 100644 --- a/src/index.css +++ b/src/index.css @@ -29,6 +29,10 @@ noscript { } } +#root { + min-width: 15.4rem; +} + * { box-sizing: border-box; }