holygrail2 1.0.90 → 1.0.91
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.
- package/package.json +1 -1
- package/scss/base/_grid.scss +28 -2
package/package.json
CHANGED
package/scss/base/_grid.scss
CHANGED
|
@@ -361,13 +361,17 @@
|
|
|
361
361
|
.grid-4 {
|
|
362
362
|
display: grid;
|
|
363
363
|
grid-template-columns: repeat(4, 1fr);
|
|
364
|
+
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
.grid-gap-16{
|
|
364
368
|
gap: 16px;
|
|
369
|
+
|
|
365
370
|
}
|
|
366
371
|
|
|
367
372
|
.grid-8 {
|
|
368
373
|
display: grid;
|
|
369
374
|
grid-template-columns: repeat(8, 1fr);
|
|
370
|
-
gap: 16px;
|
|
371
375
|
width: 100%;
|
|
372
376
|
align-items: start;
|
|
373
377
|
max-width: 1200px;
|
|
@@ -390,17 +394,39 @@
|
|
|
390
394
|
@media (min-width: $break-sm) {
|
|
391
395
|
display: grid;
|
|
392
396
|
grid-template-columns: repeat(2, 1fr);
|
|
393
|
-
column-gap: 16px;
|
|
394
397
|
}
|
|
395
398
|
}
|
|
396
399
|
.sm\:grid-4 {
|
|
397
400
|
@media (min-width: $break-sm) {
|
|
398
401
|
display: grid;
|
|
399
402
|
grid-template-columns: repeat(4, 1fr);
|
|
403
|
+
}
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
.sm\:grid-8 {
|
|
407
|
+
@media (min-width: $break-sm) {
|
|
408
|
+
display: grid;
|
|
409
|
+
grid-template-columns: repeat(8, 1fr);
|
|
410
|
+
}
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
.grid-auto{
|
|
414
|
+
display: grid;
|
|
415
|
+
grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
|
|
416
|
+
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
|
|
420
|
+
|
|
421
|
+
.sm\:grid-gap-16 {
|
|
422
|
+
@media (min-width: $break-sm) {
|
|
400
423
|
column-gap: 16px;
|
|
401
424
|
}
|
|
402
425
|
}
|
|
403
426
|
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
|
|
404
430
|
.grid-2-wide {
|
|
405
431
|
grid-column: span 2;
|
|
406
432
|
}
|