diff --git a/components/Cards/style.scss b/components/Cards/style.scss index 8786fc8e4..5c776a4e0 100644 --- a/components/Cards/style.scss +++ b/components/Cards/style.scss @@ -1,3 +1,5 @@ +$iphone-plus: 414px; + .CardsGrid { display: grid; gap: 20px; @@ -45,5 +47,7 @@ } } - + @media (max-width: $iphone-plus) { + grid-template-columns: 1fr !important; + } }