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; } }