Skip to content

Commit 0d7296b

Browse files
Merge pull request #15 from TorstenDittmann/fix-grid
Improve tabs styling with overflow and hover effects
2 parents 3413c75 + 31e6bc6 commit 0d7296b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/main/src/compoments/_grid.scss

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@
77
display: grid;
88
grid-template-columns: 1fr;
99

10-
@media (min-width: map.get(breakpoints.$breakpoints, "small")) {
10+
@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")) {
1114
grid-template-columns: repeat(auto-fit, minmax(20%, 1fr));
1215
}
1316
}

0 commit comments

Comments
 (0)