From 3716b8259ae2cb132cc56858e445ed1e07774a4f Mon Sep 17 00:00:00 2001 From: kaniwow Date: Tue, 28 Mar 2023 10:51:15 +0800 Subject: [PATCH] Fix: Samll Width View --- src/components/proxies/ProxyList.module.scss | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/proxies/ProxyList.module.scss b/src/components/proxies/ProxyList.module.scss index 2e33f59..d89be94 100644 --- a/src/components/proxies/ProxyList.module.scss +++ b/src/components/proxies/ProxyList.module.scss @@ -3,7 +3,10 @@ display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); margin-left: -3px; - @media screen and (max-width: 30em) { + @media screen and (max-width: 23em) { + grid-template-columns: 1fr; + } + @media screen and (min-width: 23em) and (max-width: 30em) { grid-template-columns: 1fr 1fr; } }