We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fea25a commit 6729f16Copy full SHA for 6729f16
style/carousel.css
@@ -195,6 +195,7 @@ body {
195
.grid-container {
196
display: grid;
197
grid-template-columns: auto auto auto;
198
+ grid-template-rows: auto;
199
background-color: #ffffff;
200
padding: 10px;
201
}
@@ -207,6 +208,19 @@ body {
207
208
box-sizing: border-box;
209
210
211
+@media(max-width:1024px) {
212
+ .grid-container {
213
+ display: block;
214
+ grid-template-columns: auto;
215
216
+ }
217
+ .grid-item {
218
+ grid-column: auto;
219
+ grid-row: auto;
220
+ margin-bottom:10px;
221
222
+}
223
+
224
.zoom {
225
padding: 50px;
226
transition: transform .2s;
0 commit comments