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 187f29f commit a9b0cd8Copy full SHA for a9b0cd8
app/styles/components/categories-list.scss
@@ -1,5 +1,7 @@
1
.categories-list {
2
- flex: 1;
+ display: flex;
3
+ flex-direction: row;
4
+ flex-wrap: wrap;
5
margin-bottom: 2em;
6
width: 100%;
7
}
app/styles/components/category-item.scss
@@ -1,6 +1,17 @@
.category-item {
- @include omega(5n);
- @include span-columns(2.4);
+ width: 20%;
+ @include media($lg-screen) {
+ width: 25%;
+ }
+ @include media($md-screen) {
+ width: 33%;
8
9
+ @include media($sm-screen) {
10
+ width: 50%;
11
12
+ @include media($xs-screen) {
13
+ width: 100%;
14
15
16
text-align: center;
17
0 commit comments