We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de5627f commit 31e6bc6Copy full SHA for 31e6bc6
packages/main/src/compoments/_grid.scss
@@ -7,7 +7,10 @@
7
display: grid;
8
grid-template-columns: 1fr;
9
10
- @media (min-width: map.get(breakpoints.$breakpoints, "small")) {
+ @media (min-width: map.get(breakpoints.$breakpoints, "medium")) {
11
+ grid-template-columns: repeat(auto-fit, minmax(33%, 1fr));
12
+ }
13
+ @media (min-width: map.get(breakpoints.$breakpoints, "large")) {
14
grid-template-columns: repeat(auto-fit, minmax(20%, 1fr));
15
}
16
0 commit comments