active_frontend 17.6.0 → 17.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5ec036b7fa352e04ca1cbea086034cd687e821f434356112f070955445369eba
|
|
4
|
+
data.tar.gz: 53746b5300d4e2e97ab3a96c0cb91ffc3f26498768ef1fe7c6f9c9e8144451e7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ab7d616f109bf69813cb69a5fc3c9b63c2d5d6e06aa289971f66c8c88dfa5274c133480f58365f996012879e06d831394f2650cc6f9d793d2cfbcff484c9958a
|
|
7
|
+
data.tar.gz: a51a7f553ae9351540d3598ce1a2ec84f386c390dc759ad3b9954f6973cef23c345731b7bad9f9b8cf766f17e963f1d654594d4daacabf438ddea7982482d2a3
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
.container-grid {
|
|
77
77
|
display: grid;
|
|
78
78
|
grid-gap: 20px;
|
|
79
|
-
grid-template-columns: repeat(
|
|
79
|
+
grid-template-columns: repeat(3, 1fr);
|
|
80
80
|
}
|
|
81
81
|
|
|
82
82
|
// Columns
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
// ==================================================
|
|
115
115
|
@media only screen and (min-width: breakpoint-min-width(xl)) {
|
|
116
116
|
.container-cols { column-count: 4; }
|
|
117
|
-
.container-grid { grid-template-columns: repeat(
|
|
117
|
+
.container-grid { grid-template-columns: repeat(4, 1fr); }
|
|
118
118
|
}
|
|
119
119
|
@media only screen and (min-width: breakpoint-min-width(b)) and (max-width: breakpoint-max-width(l)) {
|
|
120
120
|
@each $name, $widths in $grid-container-widths {
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
}
|
|
139
139
|
|
|
140
140
|
.container-cols { column-count: 2; }
|
|
141
|
-
.container-grid { grid-template-columns: repeat(
|
|
141
|
+
.container-grid { grid-template-columns: repeat(2, 1fr); }
|
|
142
142
|
.hidden-desktop { display: inherit; }
|
|
143
143
|
.hidden-tablet { display: none; }
|
|
144
144
|
}
|
|
@@ -180,7 +180,7 @@
|
|
|
180
180
|
column-count: 1;
|
|
181
181
|
column-gap: 0;
|
|
182
182
|
}
|
|
183
|
-
.container-grid { grid-template-columns: repeat(
|
|
183
|
+
.container-grid { grid-template-columns: repeat(1, 1fr); }
|
|
184
184
|
.hidden-desktop { display: inherit; }
|
|
185
185
|
.hidden-phone { display: none; }
|
|
186
186
|
}
|