@dcodegroup-au/page-builder 0.7.6 → 0.7.8
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/dist/page-builder.css +169 -72
- package/dist/page-builder.es.js +110 -80
- package/dist/page-builder.umd.js +110 -80
- package/package.json +1 -1
- package/src/assets/css/style.css +1 -1
- package/src/components/presenters/components/CarouselPresenter.vue +33 -9
- package/src/components/presenters/components/HeaderPresenter.vue +3 -3
- package/src/components/presenters/components/VerticalTabPresenter.vue +22 -13
- package/src/components/presenters/modules/AccordionPricing.vue +1 -1
- package/src/components/presenters/modules/BulletPoints.vue +1 -1
- package/src/components/presenters/modules/CollectionCarousel.vue +2 -2
- package/src/components/presenters/modules/FAQ.vue +1 -1
- package/src/components/presenters/modules/LinkCard.vue +1 -1
- package/src/components/presenters/modules/LinkList.vue +1 -1
- package/src/components/presenters/modules/Paragraph.vue +1 -1
- package/src/components/presenters/modules/Timeline.vue +1 -1
- package/src/components/presenters/modules/TwoColumnsImageContent.vue +1 -1
- package/src/components/presenters/modules/VTabs.vue +1 -1
package/dist/page-builder.css
CHANGED
|
@@ -700,6 +700,9 @@ select {
|
|
|
700
700
|
.pointer-events-none {
|
|
701
701
|
pointer-events: none;
|
|
702
702
|
}
|
|
703
|
+
.pointer-events-auto {
|
|
704
|
+
pointer-events: auto;
|
|
705
|
+
}
|
|
703
706
|
.fixed {
|
|
704
707
|
position: fixed;
|
|
705
708
|
}
|
|
@@ -742,9 +745,6 @@ select {
|
|
|
742
745
|
.right-2 {
|
|
743
746
|
right: 0.5rem;
|
|
744
747
|
}
|
|
745
|
-
.right-4 {
|
|
746
|
-
right: 1rem;
|
|
747
|
-
}
|
|
748
748
|
.right-\[-17px\] {
|
|
749
749
|
right: -17px;
|
|
750
750
|
}
|
|
@@ -760,9 +760,6 @@ select {
|
|
|
760
760
|
.top-6 {
|
|
761
761
|
top: 1.5rem;
|
|
762
762
|
}
|
|
763
|
-
.top-\[-65px\] {
|
|
764
|
-
top: -65px;
|
|
765
|
-
}
|
|
766
763
|
.top-\[100\%\] {
|
|
767
764
|
top: 100%;
|
|
768
765
|
}
|
|
@@ -855,9 +852,6 @@ select {
|
|
|
855
852
|
.mb-8 {
|
|
856
853
|
margin-bottom: 2rem;
|
|
857
854
|
}
|
|
858
|
-
.mb-\[40px\] {
|
|
859
|
-
margin-bottom: 40px;
|
|
860
|
-
}
|
|
861
855
|
.mb-\[48px\] {
|
|
862
856
|
margin-bottom: 48px;
|
|
863
857
|
}
|
|
@@ -1051,9 +1045,6 @@ select {
|
|
|
1051
1045
|
.max-h-\[196px\] {
|
|
1052
1046
|
max-height: 196px;
|
|
1053
1047
|
}
|
|
1054
|
-
.max-h-\[200px\] {
|
|
1055
|
-
max-height: 200px;
|
|
1056
|
-
}
|
|
1057
1048
|
.max-h-\[48px\] {
|
|
1058
1049
|
max-height: 48px;
|
|
1059
1050
|
}
|
|
@@ -1450,18 +1441,12 @@ select {
|
|
|
1450
1441
|
.rounded-br-\[24px\] {
|
|
1451
1442
|
border-bottom-right-radius: 24px;
|
|
1452
1443
|
}
|
|
1453
|
-
.rounded-br-\[48px\] {
|
|
1454
|
-
border-bottom-right-radius: 48px;
|
|
1455
|
-
}
|
|
1456
1444
|
.rounded-tl-3xl {
|
|
1457
1445
|
border-top-left-radius: 1.5rem;
|
|
1458
1446
|
}
|
|
1459
1447
|
.rounded-tl-\[24px\] {
|
|
1460
1448
|
border-top-left-radius: 24px;
|
|
1461
1449
|
}
|
|
1462
|
-
.rounded-tl-\[48px\] {
|
|
1463
|
-
border-top-left-radius: 48px;
|
|
1464
|
-
}
|
|
1465
1450
|
.rounded-tr-\[0px\] {
|
|
1466
1451
|
border-top-right-radius: 0px;
|
|
1467
1452
|
}
|
|
@@ -1483,9 +1468,6 @@ select {
|
|
|
1483
1468
|
.border-b {
|
|
1484
1469
|
border-bottom-width: 1px;
|
|
1485
1470
|
}
|
|
1486
|
-
.border-l-4 {
|
|
1487
|
-
border-left-width: 4px;
|
|
1488
|
-
}
|
|
1489
1471
|
.border-t {
|
|
1490
1472
|
border-top-width: 1px;
|
|
1491
1473
|
}
|
|
@@ -1546,6 +1528,10 @@ select {
|
|
|
1546
1528
|
--tw-border-opacity: 1;
|
|
1547
1529
|
border-color: rgb(148 166 184 / var(--tw-border-opacity, 1));
|
|
1548
1530
|
}
|
|
1531
|
+
.border-navy-25 {
|
|
1532
|
+
--tw-border-opacity: 1;
|
|
1533
|
+
border-color: rgb(239 242 245 / var(--tw-border-opacity, 1));
|
|
1534
|
+
}
|
|
1549
1535
|
.border-orange-200 {
|
|
1550
1536
|
--tw-border-opacity: 1;
|
|
1551
1537
|
border-color: rgb(249 219 175 / var(--tw-border-opacity, 1));
|
|
@@ -1689,9 +1675,6 @@ select {
|
|
|
1689
1675
|
.p-1\.5 {
|
|
1690
1676
|
padding: 0.375rem;
|
|
1691
1677
|
}
|
|
1692
|
-
.p-16 {
|
|
1693
|
-
padding: 4rem;
|
|
1694
|
-
}
|
|
1695
1678
|
.p-2 {
|
|
1696
1679
|
padding: 0.5rem;
|
|
1697
1680
|
}
|
|
@@ -1860,9 +1843,6 @@ select {
|
|
|
1860
1843
|
.pl-3 {
|
|
1861
1844
|
padding-left: 0.75rem;
|
|
1862
1845
|
}
|
|
1863
|
-
.pl-4 {
|
|
1864
|
-
padding-left: 1rem;
|
|
1865
|
-
}
|
|
1866
1846
|
.pl-6 {
|
|
1867
1847
|
padding-left: 1.5rem;
|
|
1868
1848
|
}
|
|
@@ -1936,9 +1916,6 @@ select {
|
|
|
1936
1916
|
.text-\[32px\] {
|
|
1937
1917
|
font-size: 32px;
|
|
1938
1918
|
}
|
|
1939
|
-
.text-\[36px\] {
|
|
1940
|
-
font-size: 36px;
|
|
1941
|
-
}
|
|
1942
1919
|
.text-base {
|
|
1943
1920
|
font-size: 1rem;
|
|
1944
1921
|
line-height: 1.5rem;
|
|
@@ -2113,6 +2090,9 @@ select {
|
|
|
2113
2090
|
.\!no-underline {
|
|
2114
2091
|
text-decoration-line: none !important;
|
|
2115
2092
|
}
|
|
2093
|
+
.opacity-100 {
|
|
2094
|
+
opacity: 1;
|
|
2095
|
+
}
|
|
2116
2096
|
.opacity-50 {
|
|
2117
2097
|
opacity: 0.5;
|
|
2118
2098
|
}
|
|
@@ -2805,6 +2785,14 @@ select {
|
|
|
2805
2785
|
|
|
2806
2786
|
@media (min-width: 768px) {
|
|
2807
2787
|
|
|
2788
|
+
.pb-container {
|
|
2789
|
+
padding-left: 4rem;
|
|
2790
|
+
padding-right: 4rem;
|
|
2791
|
+
}
|
|
2792
|
+
}
|
|
2793
|
+
|
|
2794
|
+
@media (min-width: 1024px) {
|
|
2795
|
+
|
|
2808
2796
|
.pb-container {
|
|
2809
2797
|
padding-left: 120px;
|
|
2810
2798
|
padding-right: 120px;
|
|
@@ -2904,10 +2892,6 @@ select {
|
|
|
2904
2892
|
text-decoration-line: underline;
|
|
2905
2893
|
}
|
|
2906
2894
|
|
|
2907
|
-
.hover\:opacity-100:hover {
|
|
2908
|
-
opacity: 1;
|
|
2909
|
-
}
|
|
2910
|
-
|
|
2911
2895
|
.hover\:opacity-60:hover {
|
|
2912
2896
|
opacity: 0.6;
|
|
2913
2897
|
}
|
|
@@ -3013,11 +2997,6 @@ select {
|
|
|
3013
2997
|
|
|
3014
2998
|
@media not all and (min-width: 768px) {
|
|
3015
2999
|
|
|
3016
|
-
.max-md\:mx-\[30px\] {
|
|
3017
|
-
margin-left: 30px;
|
|
3018
|
-
margin-right: 30px;
|
|
3019
|
-
}
|
|
3020
|
-
|
|
3021
3000
|
.max-md\:w-full {
|
|
3022
3001
|
width: 100%;
|
|
3023
3002
|
}
|
|
@@ -3042,17 +3021,63 @@ select {
|
|
|
3042
3021
|
|
|
3043
3022
|
@media not all and (min-width: 640px) {
|
|
3044
3023
|
|
|
3024
|
+
.max-sm\:bottom-0 {
|
|
3025
|
+
bottom: 0px;
|
|
3026
|
+
}
|
|
3027
|
+
|
|
3028
|
+
.max-sm\:hidden {
|
|
3029
|
+
display: none;
|
|
3030
|
+
}
|
|
3031
|
+
|
|
3032
|
+
.max-sm\:min-h-\[84px\] {
|
|
3033
|
+
min-height: 84px;
|
|
3034
|
+
}
|
|
3035
|
+
|
|
3036
|
+
.max-sm\:grid-cols-2 {
|
|
3037
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
3038
|
+
}
|
|
3039
|
+
|
|
3040
|
+
.max-sm\:grid-cols-\[auto_20px\] {
|
|
3041
|
+
grid-template-columns: auto 20px;
|
|
3042
|
+
}
|
|
3043
|
+
|
|
3045
3044
|
.max-sm\:flex-col {
|
|
3046
3045
|
flex-direction: column;
|
|
3047
3046
|
}
|
|
3048
3047
|
|
|
3048
|
+
.max-sm\:rounded-lg {
|
|
3049
|
+
border-radius: 0.5rem;
|
|
3050
|
+
}
|
|
3051
|
+
|
|
3052
|
+
.max-sm\:bg-white {
|
|
3053
|
+
--tw-bg-opacity: 1;
|
|
3054
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
|
|
3055
|
+
}
|
|
3056
|
+
|
|
3057
|
+
.max-sm\:p-3 {
|
|
3058
|
+
padding: 0.75rem;
|
|
3059
|
+
}
|
|
3060
|
+
|
|
3049
3061
|
.max-sm\:pb-4 {
|
|
3050
3062
|
padding-bottom: 1rem;
|
|
3051
3063
|
}
|
|
3064
|
+
|
|
3065
|
+
.max-sm\:text-gray-900 {
|
|
3066
|
+
--tw-text-opacity: 1;
|
|
3067
|
+
color: rgb(17 24 39 / var(--tw-text-opacity, 1));
|
|
3068
|
+
}
|
|
3052
3069
|
}
|
|
3053
3070
|
|
|
3054
3071
|
@media (min-width: 640px) {
|
|
3055
3072
|
|
|
3073
|
+
.sm\:top-\[-65px\] {
|
|
3074
|
+
top: -65px;
|
|
3075
|
+
}
|
|
3076
|
+
|
|
3077
|
+
.sm\:mb-2 {
|
|
3078
|
+
margin-bottom: 0.5rem;
|
|
3079
|
+
}
|
|
3080
|
+
|
|
3056
3081
|
.sm\:mt-14 {
|
|
3057
3082
|
margin-top: 3.5rem;
|
|
3058
3083
|
}
|
|
@@ -3064,6 +3089,10 @@ select {
|
|
|
3064
3089
|
-webkit-line-clamp: 3;
|
|
3065
3090
|
}
|
|
3066
3091
|
|
|
3092
|
+
.sm\:hidden {
|
|
3093
|
+
display: none;
|
|
3094
|
+
}
|
|
3095
|
+
|
|
3067
3096
|
.sm\:h-\[240px\] {
|
|
3068
3097
|
height: 240px;
|
|
3069
3098
|
}
|
|
@@ -3080,13 +3109,20 @@ select {
|
|
|
3080
3109
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
3081
3110
|
}
|
|
3082
3111
|
|
|
3083
|
-
.sm\:
|
|
3084
|
-
|
|
3112
|
+
.sm\:grid-cols-\[auto_240px\] {
|
|
3113
|
+
grid-template-columns: auto 240px;
|
|
3085
3114
|
}
|
|
3086
3115
|
|
|
3087
|
-
.sm\:
|
|
3088
|
-
|
|
3089
|
-
|
|
3116
|
+
.sm\:justify-center {
|
|
3117
|
+
justify-content: center;
|
|
3118
|
+
}
|
|
3119
|
+
|
|
3120
|
+
.sm\:border-l-4 {
|
|
3121
|
+
border-left-width: 4px;
|
|
3122
|
+
}
|
|
3123
|
+
|
|
3124
|
+
.sm\:p-0 {
|
|
3125
|
+
padding: 0px;
|
|
3090
3126
|
}
|
|
3091
3127
|
|
|
3092
3128
|
.sm\:px-4 {
|
|
@@ -3094,13 +3130,45 @@ select {
|
|
|
3094
3130
|
padding-right: 1rem;
|
|
3095
3131
|
}
|
|
3096
3132
|
|
|
3133
|
+
.sm\:py-4 {
|
|
3134
|
+
padding-top: 1rem;
|
|
3135
|
+
padding-bottom: 1rem;
|
|
3136
|
+
}
|
|
3137
|
+
|
|
3138
|
+
.sm\:pl-4 {
|
|
3139
|
+
padding-left: 1rem;
|
|
3140
|
+
}
|
|
3141
|
+
|
|
3142
|
+
.sm\:pr-28 {
|
|
3143
|
+
padding-right: 7rem;
|
|
3144
|
+
}
|
|
3145
|
+
|
|
3097
3146
|
.sm\:pt-10 {
|
|
3098
3147
|
padding-top: 2.5rem;
|
|
3099
3148
|
}
|
|
3149
|
+
|
|
3150
|
+
.sm\:text-3xl {
|
|
3151
|
+
font-size: 1.875rem;
|
|
3152
|
+
line-height: 2.25rem;
|
|
3153
|
+
}
|
|
3154
|
+
|
|
3155
|
+
.sm\:text-base {
|
|
3156
|
+
font-size: 1rem;
|
|
3157
|
+
line-height: 1.5rem;
|
|
3158
|
+
}
|
|
3159
|
+
|
|
3160
|
+
.sm\:text-lg {
|
|
3161
|
+
font-size: 1.125rem;
|
|
3162
|
+
line-height: 1.75rem;
|
|
3163
|
+
}
|
|
3100
3164
|
}
|
|
3101
3165
|
|
|
3102
3166
|
@media (min-width: 768px) {
|
|
3103
3167
|
|
|
3168
|
+
.md\:-right-28 {
|
|
3169
|
+
right: -7rem;
|
|
3170
|
+
}
|
|
3171
|
+
|
|
3104
3172
|
.md\:right-\[120px\] {
|
|
3105
3173
|
right: 120px;
|
|
3106
3174
|
}
|
|
@@ -3121,14 +3189,6 @@ select {
|
|
|
3121
3189
|
height: 806px;
|
|
3122
3190
|
}
|
|
3123
3191
|
|
|
3124
|
-
.md\:max-h-\[387px\] {
|
|
3125
|
-
max-height: 387px;
|
|
3126
|
-
}
|
|
3127
|
-
|
|
3128
|
-
.md\:w-1\/2 {
|
|
3129
|
-
width: 50%;
|
|
3130
|
-
}
|
|
3131
|
-
|
|
3132
3192
|
.md\:w-3\/4 {
|
|
3133
3193
|
width: 75%;
|
|
3134
3194
|
}
|
|
@@ -3215,6 +3275,10 @@ select {
|
|
|
3215
3275
|
padding-left: 1.5rem;
|
|
3216
3276
|
}
|
|
3217
3277
|
|
|
3278
|
+
.md\:pr-0 {
|
|
3279
|
+
padding-right: 0px;
|
|
3280
|
+
}
|
|
3281
|
+
|
|
3218
3282
|
.md\:pt-12 {
|
|
3219
3283
|
padding-top: 3rem;
|
|
3220
3284
|
}
|
|
@@ -3249,10 +3313,18 @@ select {
|
|
|
3249
3313
|
|
|
3250
3314
|
@media (min-width: 1024px) {
|
|
3251
3315
|
|
|
3316
|
+
.lg\:right-4 {
|
|
3317
|
+
right: 1rem;
|
|
3318
|
+
}
|
|
3319
|
+
|
|
3252
3320
|
.lg\:-mt-12 {
|
|
3253
3321
|
margin-top: -3rem;
|
|
3254
3322
|
}
|
|
3255
3323
|
|
|
3324
|
+
.lg\:mb-10 {
|
|
3325
|
+
margin-bottom: 2.5rem;
|
|
3326
|
+
}
|
|
3327
|
+
|
|
3256
3328
|
.lg\:mt-\[218px\] {
|
|
3257
3329
|
margin-top: 218px;
|
|
3258
3330
|
}
|
|
@@ -3281,6 +3353,10 @@ select {
|
|
|
3281
3353
|
height: 872px;
|
|
3282
3354
|
}
|
|
3283
3355
|
|
|
3356
|
+
.lg\:max-h-\[387px\] {
|
|
3357
|
+
max-height: 387px;
|
|
3358
|
+
}
|
|
3359
|
+
|
|
3284
3360
|
.lg\:min-h-\[136px\] {
|
|
3285
3361
|
min-height: 136px;
|
|
3286
3362
|
}
|
|
@@ -3355,6 +3431,18 @@ select {
|
|
|
3355
3431
|
border-bottom-left-radius: 48px;
|
|
3356
3432
|
}
|
|
3357
3433
|
|
|
3434
|
+
.lg\:rounded-br-\[48px\] {
|
|
3435
|
+
border-bottom-right-radius: 48px;
|
|
3436
|
+
}
|
|
3437
|
+
|
|
3438
|
+
.lg\:rounded-tl-\[48px\] {
|
|
3439
|
+
border-top-left-radius: 48px;
|
|
3440
|
+
}
|
|
3441
|
+
|
|
3442
|
+
.lg\:p-16 {
|
|
3443
|
+
padding: 4rem;
|
|
3444
|
+
}
|
|
3445
|
+
|
|
3358
3446
|
.lg\:p-8 {
|
|
3359
3447
|
padding: 2rem;
|
|
3360
3448
|
}
|
|
@@ -3381,10 +3469,19 @@ select {
|
|
|
3381
3469
|
padding-right: 4rem;
|
|
3382
3470
|
}
|
|
3383
3471
|
|
|
3472
|
+
.lg\:pt-10 {
|
|
3473
|
+
padding-top: 2.5rem;
|
|
3474
|
+
}
|
|
3475
|
+
|
|
3384
3476
|
.lg\:pt-\[164px\] {
|
|
3385
3477
|
padding-top: 164px;
|
|
3386
3478
|
}
|
|
3387
3479
|
|
|
3480
|
+
.lg\:text-4xl {
|
|
3481
|
+
font-size: 2.25rem;
|
|
3482
|
+
line-height: 2.5rem;
|
|
3483
|
+
}
|
|
3484
|
+
|
|
3388
3485
|
.lg\:text-\[48px\] {
|
|
3389
3486
|
font-size: 48px;
|
|
3390
3487
|
}
|
|
@@ -3394,6 +3491,11 @@ select {
|
|
|
3394
3491
|
line-height: 1.75rem;
|
|
3395
3492
|
}
|
|
3396
3493
|
|
|
3494
|
+
.lg\:text-xl {
|
|
3495
|
+
font-size: 1.25rem;
|
|
3496
|
+
line-height: 1.75rem;
|
|
3497
|
+
}
|
|
3498
|
+
|
|
3397
3499
|
.lg\:leading-\[60px\] {
|
|
3398
3500
|
line-height: 60px;
|
|
3399
3501
|
}
|
|
@@ -3438,11 +3540,6 @@ select {
|
|
|
3438
3540
|
|
|
3439
3541
|
@media (min-width: 1440px) {
|
|
3440
3542
|
|
|
3441
|
-
.\31xl\:mx-0 {
|
|
3442
|
-
margin-left: 0px;
|
|
3443
|
-
margin-right: 0px;
|
|
3444
|
-
}
|
|
3445
|
-
|
|
3446
3543
|
.\31xl\:max-w-\[1872px\] {
|
|
3447
3544
|
max-width: 1872px;
|
|
3448
3545
|
}
|
|
@@ -3786,12 +3883,12 @@ select {
|
|
|
3786
3883
|
}
|
|
3787
3884
|
}
|
|
3788
3885
|
|
|
3789
|
-
.fade-enter-active[data-v-
|
|
3886
|
+
.fade-enter-active[data-v-85226fd9], .fade-leave-active[data-v-85226fd9] {
|
|
3790
3887
|
transition-property: opacity;
|
|
3791
3888
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
3792
3889
|
transition-duration: 300ms
|
|
3793
3890
|
}
|
|
3794
|
-
.fade-enter-from[data-v-
|
|
3891
|
+
.fade-enter-from[data-v-85226fd9], .fade-leave-to[data-v-85226fd9] {
|
|
3795
3892
|
opacity: 0
|
|
3796
3893
|
}
|
|
3797
3894
|
|
|
@@ -3811,58 +3908,58 @@ select {
|
|
|
3811
3908
|
}
|
|
3812
3909
|
|
|
3813
3910
|
@media (min-width: 640px) {
|
|
3814
|
-
.link-card__columns--2[data-v-
|
|
3911
|
+
.link-card__columns--2[data-v-af7a1782] {
|
|
3815
3912
|
grid-template-columns: repeat(2, minmax(0, 1fr))
|
|
3816
3913
|
}
|
|
3817
3914
|
}
|
|
3818
3915
|
@media (min-width: 768px) {
|
|
3819
|
-
.link-card__columns--3[data-v-
|
|
3916
|
+
.link-card__columns--3[data-v-af7a1782] {
|
|
3820
3917
|
grid-template-columns: repeat(3, minmax(0, 1fr))
|
|
3821
3918
|
}
|
|
3822
3919
|
}
|
|
3823
3920
|
@media (min-width: 640px) {
|
|
3824
|
-
.link-card__columns--4[data-v-
|
|
3921
|
+
.link-card__columns--4[data-v-af7a1782] {
|
|
3825
3922
|
grid-template-columns: repeat(2, minmax(0, 1fr))
|
|
3826
3923
|
}
|
|
3827
3924
|
}
|
|
3828
3925
|
@media (min-width: 1024px) {
|
|
3829
|
-
.link-card__columns--4[data-v-
|
|
3926
|
+
.link-card__columns--4[data-v-af7a1782] {
|
|
3830
3927
|
grid-template-columns: repeat(4, minmax(0, 1fr))
|
|
3831
3928
|
}
|
|
3832
3929
|
}
|
|
3833
|
-
.link-card__columns--with-featured-image[data-v-
|
|
3930
|
+
.link-card__columns--with-featured-image[data-v-af7a1782] {
|
|
3834
3931
|
height: -moz-fit-content;
|
|
3835
3932
|
height: fit-content
|
|
3836
3933
|
}
|
|
3837
|
-
.link-card__columns--with-featured-image[data-v-
|
|
3934
|
+
.link-card__columns--with-featured-image[data-v-af7a1782] {
|
|
3838
3935
|
flex-direction: column
|
|
3839
3936
|
}
|
|
3840
|
-
.link-card__columns--with-featured-image.link-card__columns--2[data-v-
|
|
3937
|
+
.link-card__columns--with-featured-image.link-card__columns--2[data-v-af7a1782] {
|
|
3841
3938
|
grid-template-columns: repeat(1, minmax(0, 1fr))
|
|
3842
3939
|
}
|
|
3843
3940
|
@media (min-width: 1024px) {
|
|
3844
|
-
.link-card__columns--with-featured-image.link-card__columns--2[data-v-
|
|
3941
|
+
.link-card__columns--with-featured-image.link-card__columns--2[data-v-af7a1782] {
|
|
3845
3942
|
grid-template-columns: repeat(2, minmax(0, 1fr))
|
|
3846
3943
|
}
|
|
3847
3944
|
}
|
|
3848
|
-
.link-card__columns--with-featured-image.link-card__columns--3[data-v-
|
|
3945
|
+
.link-card__columns--with-featured-image.link-card__columns--3[data-v-af7a1782] {
|
|
3849
3946
|
grid-template-columns: repeat(1, minmax(0, 1fr))
|
|
3850
3947
|
}
|
|
3851
3948
|
@media (min-width: 1280px) {
|
|
3852
|
-
.link-card__columns--with-featured-image.link-card__columns--3[data-v-
|
|
3949
|
+
.link-card__columns--with-featured-image.link-card__columns--3[data-v-af7a1782] {
|
|
3853
3950
|
grid-template-columns: repeat(3, minmax(0, 1fr))
|
|
3854
3951
|
}
|
|
3855
3952
|
}
|
|
3856
|
-
.link-card__columns--with-featured-image.link-card__columns--4[data-v-
|
|
3953
|
+
.link-card__columns--with-featured-image.link-card__columns--4[data-v-af7a1782] {
|
|
3857
3954
|
grid-template-columns: repeat(1, minmax(0, 1fr))
|
|
3858
3955
|
}
|
|
3859
3956
|
@media (min-width: 1024px) {
|
|
3860
|
-
.link-card__columns--with-featured-image.link-card__columns--4[data-v-
|
|
3957
|
+
.link-card__columns--with-featured-image.link-card__columns--4[data-v-af7a1782] {
|
|
3861
3958
|
grid-template-columns: repeat(2, minmax(0, 1fr))
|
|
3862
3959
|
}
|
|
3863
3960
|
}
|
|
3864
3961
|
@media (min-width: 1280px) {
|
|
3865
|
-
.link-card__columns--with-featured-image.link-card__columns--4[data-v-
|
|
3962
|
+
.link-card__columns--with-featured-image.link-card__columns--4[data-v-af7a1782] {
|
|
3866
3963
|
grid-template-columns: repeat(4, minmax(0, 1fr))
|
|
3867
3964
|
}
|
|
3868
3965
|
}
|