@dcodegroup-au/page-builder 0.7.0 → 0.7.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.
- package/dist/page-builder.css +283 -68
- package/dist/page-builder.es.js +247 -244
- package/dist/page-builder.umd.js +247 -244
- package/example/src/App.vue +89 -17
- package/example/src/pages/AboutUs.js +1 -1
- package/example/src/pages/OurCommitment.js +1 -1
- package/example/src/pages/OurHistory.js +1 -1
- package/package.json +1 -1
- package/src/components/builders/Links.vue +0 -1
- package/src/components/common/LinkedTo.vue +0 -2
- package/src/components/presenters/components/CarouselPresenter.vue +18 -4
- package/src/components/presenters/components/CollectionGridPresenter.vue +3 -3
- package/src/components/presenters/components/SliderPresenter.vue +3 -2
- package/src/components/presenters/modules/AccordionPricing.vue +5 -5
- package/src/components/presenters/modules/BulletPoints.vue +5 -5
- package/src/components/presenters/modules/Callout.vue +5 -5
- package/src/components/presenters/modules/CollectionCarousel.vue +1 -1
- package/src/components/presenters/modules/ContactUs.vue +1 -1
- package/src/components/presenters/modules/FAQ.vue +3 -2
- package/src/components/presenters/modules/HeroHeader.vue +1 -1
- package/src/components/presenters/modules/HorizontalTabs.vue +4 -4
- package/src/components/presenters/modules/LinkCard.vue +39 -5
- package/src/components/presenters/modules/LinkList.vue +4 -4
- package/src/components/presenters/modules/Paragraph.vue +4 -4
- package/src/components/presenters/modules/QuickLinks.vue +1 -1
- package/src/components/presenters/modules/StandardHeader.vue +4 -4
- package/src/components/presenters/modules/TestimonialSlider.vue +4 -4
- package/src/components/presenters/modules/Timeline.vue +2 -2
- package/src/components/presenters/modules/TwoColumnsImageContent.vue +7 -16
- package/src/components/presenters/modules/VTabs.vue +1 -1
- package/tailwind.config.js +3 -0
- /package/example/src/pages/{AdvisoryService.js → AdvisoryServices.js} +0 -0
package/dist/page-builder.css
CHANGED
|
@@ -712,6 +712,9 @@ select {
|
|
|
712
712
|
.sticky {
|
|
713
713
|
position: sticky;
|
|
714
714
|
}
|
|
715
|
+
.inset-0 {
|
|
716
|
+
inset: 0px;
|
|
717
|
+
}
|
|
715
718
|
.-bottom-6 {
|
|
716
719
|
bottom: -1.5rem;
|
|
717
720
|
}
|
|
@@ -733,9 +736,6 @@ select {
|
|
|
733
736
|
.left-5 {
|
|
734
737
|
left: 1.25rem;
|
|
735
738
|
}
|
|
736
|
-
.left-\[120px\] {
|
|
737
|
-
left: 120px;
|
|
738
|
-
}
|
|
739
739
|
.left-\[70\%\] {
|
|
740
740
|
left: 70%;
|
|
741
741
|
}
|
|
@@ -778,6 +778,9 @@ select {
|
|
|
778
778
|
.z-10 {
|
|
779
779
|
z-index: 10;
|
|
780
780
|
}
|
|
781
|
+
.z-20 {
|
|
782
|
+
z-index: 20;
|
|
783
|
+
}
|
|
781
784
|
.z-50 {
|
|
782
785
|
z-index: 50;
|
|
783
786
|
}
|
|
@@ -819,6 +822,9 @@ select {
|
|
|
819
822
|
.\!mb-10 {
|
|
820
823
|
margin-bottom: 2.5rem !important;
|
|
821
824
|
}
|
|
825
|
+
.\!ml-0 {
|
|
826
|
+
margin-left: 0px !important;
|
|
827
|
+
}
|
|
822
828
|
.\!mt-0 {
|
|
823
829
|
margin-top: 0px !important;
|
|
824
830
|
}
|
|
@@ -945,9 +951,6 @@ select {
|
|
|
945
951
|
.inline-flex {
|
|
946
952
|
display: inline-flex;
|
|
947
953
|
}
|
|
948
|
-
.\!grid {
|
|
949
|
-
display: grid !important;
|
|
950
|
-
}
|
|
951
954
|
.grid {
|
|
952
955
|
display: grid;
|
|
953
956
|
}
|
|
@@ -1017,6 +1020,9 @@ select {
|
|
|
1017
1020
|
.h-\[28px\] {
|
|
1018
1021
|
height: 28px;
|
|
1019
1022
|
}
|
|
1023
|
+
.h-\[300px\] {
|
|
1024
|
+
height: 300px;
|
|
1025
|
+
}
|
|
1020
1026
|
.h-\[318px\] {
|
|
1021
1027
|
height: 318px;
|
|
1022
1028
|
}
|
|
@@ -1096,9 +1102,6 @@ select {
|
|
|
1096
1102
|
.w-1\/2 {
|
|
1097
1103
|
width: 50%;
|
|
1098
1104
|
}
|
|
1099
|
-
.w-1\/3 {
|
|
1100
|
-
width: 33.333333%;
|
|
1101
|
-
}
|
|
1102
1105
|
.w-1\/5 {
|
|
1103
1106
|
width: 20%;
|
|
1104
1107
|
}
|
|
@@ -1165,6 +1168,9 @@ select {
|
|
|
1165
1168
|
.w-\[40px\] {
|
|
1166
1169
|
width: 40px;
|
|
1167
1170
|
}
|
|
1171
|
+
.w-\[480px\] {
|
|
1172
|
+
width: 480px;
|
|
1173
|
+
}
|
|
1168
1174
|
.w-\[48px\] {
|
|
1169
1175
|
width: 48px;
|
|
1170
1176
|
}
|
|
@@ -1199,12 +1205,12 @@ select {
|
|
|
1199
1205
|
.min-w-\[24px\] {
|
|
1200
1206
|
min-width: 24px;
|
|
1201
1207
|
}
|
|
1208
|
+
.min-w-\[300px\] {
|
|
1209
|
+
min-width: 300px;
|
|
1210
|
+
}
|
|
1202
1211
|
.min-w-\[400px\] {
|
|
1203
1212
|
min-width: 400px;
|
|
1204
1213
|
}
|
|
1205
|
-
.min-w-\[480px\] {
|
|
1206
|
-
min-width: 480px;
|
|
1207
|
-
}
|
|
1208
1214
|
.min-w-\[48px\] {
|
|
1209
1215
|
min-width: 48px;
|
|
1210
1216
|
}
|
|
@@ -1229,9 +1235,6 @@ select {
|
|
|
1229
1235
|
.max-w-\[324px\] {
|
|
1230
1236
|
max-width: 324px;
|
|
1231
1237
|
}
|
|
1232
|
-
.max-w-\[33\.3\%\] {
|
|
1233
|
-
max-width: 33.3%;
|
|
1234
|
-
}
|
|
1235
1238
|
.max-w-\[356px\] {
|
|
1236
1239
|
max-width: 356px;
|
|
1237
1240
|
}
|
|
@@ -1297,6 +1300,9 @@ select {
|
|
|
1297
1300
|
.cursor-pointer {
|
|
1298
1301
|
cursor: pointer;
|
|
1299
1302
|
}
|
|
1303
|
+
.resize {
|
|
1304
|
+
resize: both;
|
|
1305
|
+
}
|
|
1300
1306
|
.list-inside {
|
|
1301
1307
|
list-style-position: inside;
|
|
1302
1308
|
}
|
|
@@ -1309,18 +1315,15 @@ select {
|
|
|
1309
1315
|
.grid-cols-2 {
|
|
1310
1316
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1311
1317
|
}
|
|
1312
|
-
.grid-cols-3 {
|
|
1313
|
-
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1314
|
-
}
|
|
1315
1318
|
.flex-row {
|
|
1316
1319
|
flex-direction: row;
|
|
1317
1320
|
}
|
|
1318
|
-
.flex-row-reverse {
|
|
1319
|
-
flex-direction: row-reverse;
|
|
1320
|
-
}
|
|
1321
1321
|
.flex-col {
|
|
1322
1322
|
flex-direction: column;
|
|
1323
1323
|
}
|
|
1324
|
+
.flex-col-reverse {
|
|
1325
|
+
flex-direction: column-reverse;
|
|
1326
|
+
}
|
|
1324
1327
|
.flex-wrap {
|
|
1325
1328
|
flex-wrap: wrap;
|
|
1326
1329
|
}
|
|
@@ -1339,6 +1342,12 @@ select {
|
|
|
1339
1342
|
.\!justify-start {
|
|
1340
1343
|
justify-content: flex-start !important;
|
|
1341
1344
|
}
|
|
1345
|
+
.justify-start {
|
|
1346
|
+
justify-content: flex-start;
|
|
1347
|
+
}
|
|
1348
|
+
.justify-end {
|
|
1349
|
+
justify-content: flex-end;
|
|
1350
|
+
}
|
|
1342
1351
|
.\!justify-center {
|
|
1343
1352
|
justify-content: center !important;
|
|
1344
1353
|
}
|
|
@@ -1366,9 +1375,6 @@ select {
|
|
|
1366
1375
|
.gap-12 {
|
|
1367
1376
|
gap: 3rem;
|
|
1368
1377
|
}
|
|
1369
|
-
.gap-16 {
|
|
1370
|
-
gap: 4rem;
|
|
1371
|
-
}
|
|
1372
1378
|
.gap-2 {
|
|
1373
1379
|
gap: 0.5rem;
|
|
1374
1380
|
}
|
|
@@ -1402,11 +1408,6 @@ select {
|
|
|
1402
1408
|
margin-right: calc(0.25rem * var(--tw-space-x-reverse));
|
|
1403
1409
|
margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1404
1410
|
}
|
|
1405
|
-
.space-x-16 > :not([hidden]) ~ :not([hidden]) {
|
|
1406
|
-
--tw-space-x-reverse: 0;
|
|
1407
|
-
margin-right: calc(4rem * var(--tw-space-x-reverse));
|
|
1408
|
-
margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1409
|
-
}
|
|
1410
1411
|
.space-x-6 > :not([hidden]) ~ :not([hidden]) {
|
|
1411
1412
|
--tw-space-x-reverse: 0;
|
|
1412
1413
|
margin-right: calc(1.5rem * var(--tw-space-x-reverse));
|
|
@@ -1442,21 +1443,12 @@ select {
|
|
|
1442
1443
|
.rounded-\[10px\] {
|
|
1443
1444
|
border-radius: 10px;
|
|
1444
1445
|
}
|
|
1445
|
-
.rounded-\[16px\] {
|
|
1446
|
-
border-radius: 16px;
|
|
1447
|
-
}
|
|
1448
1446
|
.rounded-\[20px\] {
|
|
1449
1447
|
border-radius: 20px;
|
|
1450
1448
|
}
|
|
1451
|
-
.rounded-\[24px\] {
|
|
1452
|
-
border-radius: 24px;
|
|
1453
|
-
}
|
|
1454
1449
|
.rounded-\[40px\] {
|
|
1455
1450
|
border-radius: 40px;
|
|
1456
1451
|
}
|
|
1457
|
-
.rounded-\[48px\] {
|
|
1458
|
-
border-radius: 48px;
|
|
1459
|
-
}
|
|
1460
1452
|
.rounded-\[6px\] {
|
|
1461
1453
|
border-radius: 6px;
|
|
1462
1454
|
}
|
|
@@ -1626,6 +1618,10 @@ select {
|
|
|
1626
1618
|
--tw-bg-opacity: 1;
|
|
1627
1619
|
background-color: rgb(15 172 154 / var(--tw-bg-opacity, 1));
|
|
1628
1620
|
}
|
|
1621
|
+
.bg-black {
|
|
1622
|
+
--tw-bg-opacity: 1;
|
|
1623
|
+
background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
|
|
1624
|
+
}
|
|
1629
1625
|
.bg-brand-100 {
|
|
1630
1626
|
--tw-bg-opacity: 1;
|
|
1631
1627
|
background-color: rgb(230 203 219 / var(--tw-bg-opacity, 1));
|
|
@@ -1752,10 +1748,6 @@ select {
|
|
|
1752
1748
|
padding-left: 1.5rem !important;
|
|
1753
1749
|
padding-right: 1.5rem !important;
|
|
1754
1750
|
}
|
|
1755
|
-
.\!py-8 {
|
|
1756
|
-
padding-top: 2rem !important;
|
|
1757
|
-
padding-bottom: 2rem !important;
|
|
1758
|
-
}
|
|
1759
1751
|
.px-0 {
|
|
1760
1752
|
padding-left: 0px;
|
|
1761
1753
|
padding-right: 0px;
|
|
@@ -1804,10 +1796,6 @@ select {
|
|
|
1804
1796
|
padding-left: 10px;
|
|
1805
1797
|
padding-right: 10px;
|
|
1806
1798
|
}
|
|
1807
|
-
.px-\[120px\] {
|
|
1808
|
-
padding-left: 120px;
|
|
1809
|
-
padding-right: 120px;
|
|
1810
|
-
}
|
|
1811
1799
|
.px-\[14px\] {
|
|
1812
1800
|
padding-left: 14px;
|
|
1813
1801
|
padding-right: 14px;
|
|
@@ -1872,10 +1860,6 @@ select {
|
|
|
1872
1860
|
padding-top: 40px;
|
|
1873
1861
|
padding-bottom: 40px;
|
|
1874
1862
|
}
|
|
1875
|
-
.py-\[48px\] {
|
|
1876
|
-
padding-top: 48px;
|
|
1877
|
-
padding-bottom: 48px;
|
|
1878
|
-
}
|
|
1879
1863
|
.py-\[9px\] {
|
|
1880
1864
|
padding-top: 9px;
|
|
1881
1865
|
padding-bottom: 9px;
|
|
@@ -1922,18 +1906,21 @@ select {
|
|
|
1922
1906
|
.pr-2 {
|
|
1923
1907
|
padding-right: 0.5rem;
|
|
1924
1908
|
}
|
|
1909
|
+
.pr-5 {
|
|
1910
|
+
padding-right: 1.25rem;
|
|
1911
|
+
}
|
|
1925
1912
|
.pr-8 {
|
|
1926
1913
|
padding-right: 2rem;
|
|
1927
1914
|
}
|
|
1915
|
+
.pt-16 {
|
|
1916
|
+
padding-top: 4rem;
|
|
1917
|
+
}
|
|
1928
1918
|
.pt-4 {
|
|
1929
1919
|
padding-top: 1rem;
|
|
1930
1920
|
}
|
|
1931
1921
|
.pt-6 {
|
|
1932
1922
|
padding-top: 1.5rem;
|
|
1933
1923
|
}
|
|
1934
|
-
.pt-\[164px\] {
|
|
1935
|
-
padding-top: 164px;
|
|
1936
|
-
}
|
|
1937
1924
|
.pt-\[17px\] {
|
|
1938
1925
|
padding-top: 17px;
|
|
1939
1926
|
}
|
|
@@ -1953,9 +1940,9 @@ select {
|
|
|
1953
1940
|
font-size: 1rem !important;
|
|
1954
1941
|
line-height: 1.5rem !important;
|
|
1955
1942
|
}
|
|
1956
|
-
.text-
|
|
1957
|
-
font-size: 1.
|
|
1958
|
-
line-height:
|
|
1943
|
+
.text-2xl {
|
|
1944
|
+
font-size: 1.5rem;
|
|
1945
|
+
line-height: 2rem;
|
|
1959
1946
|
}
|
|
1960
1947
|
.text-4xl {
|
|
1961
1948
|
font-size: 2.25rem;
|
|
@@ -1992,9 +1979,6 @@ select {
|
|
|
1992
1979
|
.text-\[40px\] {
|
|
1993
1980
|
font-size: 40px;
|
|
1994
1981
|
}
|
|
1995
|
-
.text-\[48px\] {
|
|
1996
|
-
font-size: 48px;
|
|
1997
|
-
}
|
|
1998
1982
|
.text-base {
|
|
1999
1983
|
font-size: 1rem;
|
|
2000
1984
|
line-height: 1.5rem;
|
|
@@ -2060,9 +2044,6 @@ select {
|
|
|
2060
2044
|
.leading-\[48px\] {
|
|
2061
2045
|
line-height: 48px;
|
|
2062
2046
|
}
|
|
2063
|
-
.leading-\[60px\] {
|
|
2064
|
-
line-height: 60px;
|
|
2065
|
-
}
|
|
2066
2047
|
.leading-none {
|
|
2067
2048
|
line-height: 1;
|
|
2068
2049
|
}
|
|
@@ -2178,6 +2159,9 @@ select {
|
|
|
2178
2159
|
.opacity-50 {
|
|
2179
2160
|
opacity: 0.5;
|
|
2180
2161
|
}
|
|
2162
|
+
.opacity-60 {
|
|
2163
|
+
opacity: 0.6;
|
|
2164
|
+
}
|
|
2181
2165
|
.shadow {
|
|
2182
2166
|
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
2183
2167
|
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
@@ -3029,6 +3013,14 @@ select {
|
|
|
3029
3013
|
|
|
3030
3014
|
@media (min-width: 640px) {
|
|
3031
3015
|
|
|
3016
|
+
.sm\:min-h-\[320px\] {
|
|
3017
|
+
min-height: 320px;
|
|
3018
|
+
}
|
|
3019
|
+
|
|
3020
|
+
.sm\:grid-cols-2 {
|
|
3021
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
3022
|
+
}
|
|
3023
|
+
|
|
3032
3024
|
.sm\:p-0 {
|
|
3033
3025
|
padding: 0px;
|
|
3034
3026
|
}
|
|
@@ -3041,6 +3033,10 @@ select {
|
|
|
3041
3033
|
|
|
3042
3034
|
@media (min-width: 768px) {
|
|
3043
3035
|
|
|
3036
|
+
.md\:right-\[120px\] {
|
|
3037
|
+
right: 120px;
|
|
3038
|
+
}
|
|
3039
|
+
|
|
3044
3040
|
.md\:h-5 {
|
|
3045
3041
|
height: 1.25rem;
|
|
3046
3042
|
}
|
|
@@ -3061,6 +3057,14 @@ select {
|
|
|
3061
3057
|
width: 1.25rem;
|
|
3062
3058
|
}
|
|
3063
3059
|
|
|
3060
|
+
.md\:w-\[560px\] {
|
|
3061
|
+
width: 560px;
|
|
3062
|
+
}
|
|
3063
|
+
|
|
3064
|
+
.md\:grid-cols-2 {
|
|
3065
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
3066
|
+
}
|
|
3067
|
+
|
|
3064
3068
|
.md\:grid-cols-3 {
|
|
3065
3069
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
3066
3070
|
}
|
|
@@ -3069,10 +3073,32 @@ select {
|
|
|
3069
3073
|
flex-direction: row;
|
|
3070
3074
|
}
|
|
3071
3075
|
|
|
3076
|
+
.md\:rounded-2xl {
|
|
3077
|
+
border-radius: 1rem;
|
|
3078
|
+
}
|
|
3079
|
+
|
|
3080
|
+
.md\:rounded-3xl {
|
|
3081
|
+
border-radius: 1.5rem;
|
|
3082
|
+
}
|
|
3083
|
+
|
|
3072
3084
|
.md\:rounded-\[40px\] {
|
|
3073
3085
|
border-radius: 40px;
|
|
3074
3086
|
}
|
|
3075
3087
|
|
|
3088
|
+
.md\:rounded-\[48px\] {
|
|
3089
|
+
border-radius: 48px;
|
|
3090
|
+
}
|
|
3091
|
+
|
|
3092
|
+
.md\:\!px-0 {
|
|
3093
|
+
padding-left: 0px !important;
|
|
3094
|
+
padding-right: 0px !important;
|
|
3095
|
+
}
|
|
3096
|
+
|
|
3097
|
+
.md\:px-24 {
|
|
3098
|
+
padding-left: 6rem;
|
|
3099
|
+
padding-right: 6rem;
|
|
3100
|
+
}
|
|
3101
|
+
|
|
3076
3102
|
.md\:px-\[120px\] {
|
|
3077
3103
|
padding-left: 120px;
|
|
3078
3104
|
padding-right: 120px;
|
|
@@ -3087,14 +3113,36 @@ select {
|
|
|
3087
3113
|
padding-left: 1.5rem;
|
|
3088
3114
|
}
|
|
3089
3115
|
|
|
3116
|
+
.md\:pt-28 {
|
|
3117
|
+
padding-top: 7rem;
|
|
3118
|
+
}
|
|
3119
|
+
|
|
3120
|
+
.md\:text-3xl {
|
|
3121
|
+
font-size: 1.875rem;
|
|
3122
|
+
line-height: 2.25rem;
|
|
3123
|
+
}
|
|
3124
|
+
|
|
3125
|
+
.md\:text-5xl {
|
|
3126
|
+
font-size: 3rem;
|
|
3127
|
+
line-height: 1;
|
|
3128
|
+
}
|
|
3129
|
+
|
|
3090
3130
|
.md\:text-xl {
|
|
3091
3131
|
font-size: 1.25rem;
|
|
3092
3132
|
line-height: 1.75rem;
|
|
3093
3133
|
}
|
|
3134
|
+
|
|
3135
|
+
.md\:leading-\[38px\] {
|
|
3136
|
+
line-height: 38px;
|
|
3137
|
+
}
|
|
3094
3138
|
}
|
|
3095
3139
|
|
|
3096
3140
|
@media (min-width: 1024px) {
|
|
3097
3141
|
|
|
3142
|
+
.lg\:absolute {
|
|
3143
|
+
position: absolute;
|
|
3144
|
+
}
|
|
3145
|
+
|
|
3098
3146
|
.lg\:relative {
|
|
3099
3147
|
position: relative;
|
|
3100
3148
|
}
|
|
@@ -3103,26 +3151,84 @@ select {
|
|
|
3103
3151
|
margin-top: 218px;
|
|
3104
3152
|
}
|
|
3105
3153
|
|
|
3154
|
+
.lg\:hidden {
|
|
3155
|
+
display: none;
|
|
3156
|
+
}
|
|
3157
|
+
|
|
3106
3158
|
.lg\:\!h-\[266px\] {
|
|
3107
3159
|
height: 266px !important;
|
|
3108
3160
|
}
|
|
3109
3161
|
|
|
3162
|
+
.lg\:h-\[300px\] {
|
|
3163
|
+
height: 300px;
|
|
3164
|
+
}
|
|
3165
|
+
|
|
3110
3166
|
.lg\:h-\[336px\] {
|
|
3111
3167
|
height: 336px;
|
|
3112
3168
|
}
|
|
3113
3169
|
|
|
3170
|
+
.lg\:h-\[480px\] {
|
|
3171
|
+
height: 480px;
|
|
3172
|
+
}
|
|
3173
|
+
|
|
3114
3174
|
.lg\:w-1\/2 {
|
|
3115
3175
|
width: 50%;
|
|
3116
3176
|
}
|
|
3117
3177
|
|
|
3178
|
+
.lg\:w-\[350px\] {
|
|
3179
|
+
width: 350px;
|
|
3180
|
+
}
|
|
3181
|
+
|
|
3182
|
+
.lg\:max-w-\[33\.3\%\] {
|
|
3183
|
+
max-width: 33.3%;
|
|
3184
|
+
}
|
|
3185
|
+
|
|
3186
|
+
.lg\:grid-cols-2 {
|
|
3187
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
3188
|
+
}
|
|
3189
|
+
|
|
3190
|
+
.lg\:grid-cols-3 {
|
|
3191
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
3192
|
+
}
|
|
3193
|
+
|
|
3194
|
+
.lg\:grid-cols-\[33\%_auto\] {
|
|
3195
|
+
grid-template-columns: 33% auto;
|
|
3196
|
+
}
|
|
3197
|
+
|
|
3118
3198
|
.lg\:flex-row {
|
|
3119
3199
|
flex-direction: row;
|
|
3120
3200
|
}
|
|
3121
3201
|
|
|
3202
|
+
.lg\:flex-row-reverse {
|
|
3203
|
+
flex-direction: row-reverse;
|
|
3204
|
+
}
|
|
3205
|
+
|
|
3206
|
+
.lg\:gap-16 {
|
|
3207
|
+
gap: 4rem;
|
|
3208
|
+
}
|
|
3209
|
+
|
|
3210
|
+
.lg\:gap-4 {
|
|
3211
|
+
gap: 1rem;
|
|
3212
|
+
}
|
|
3213
|
+
|
|
3214
|
+
.lg\:gap-8 {
|
|
3215
|
+
gap: 2rem;
|
|
3216
|
+
}
|
|
3217
|
+
|
|
3122
3218
|
.lg\:p-8 {
|
|
3123
3219
|
padding: 2rem;
|
|
3124
3220
|
}
|
|
3125
3221
|
|
|
3222
|
+
.lg\:px-\[120px\] {
|
|
3223
|
+
padding-left: 120px;
|
|
3224
|
+
padding-right: 120px;
|
|
3225
|
+
}
|
|
3226
|
+
|
|
3227
|
+
.lg\:py-4 {
|
|
3228
|
+
padding-top: 1rem;
|
|
3229
|
+
padding-bottom: 1rem;
|
|
3230
|
+
}
|
|
3231
|
+
|
|
3126
3232
|
.lg\:pl-8 {
|
|
3127
3233
|
padding-left: 2rem;
|
|
3128
3234
|
}
|
|
@@ -3131,15 +3237,52 @@ select {
|
|
|
3131
3237
|
padding-right: 4rem;
|
|
3132
3238
|
}
|
|
3133
3239
|
|
|
3240
|
+
.lg\:pt-\[164px\] {
|
|
3241
|
+
padding-top: 164px;
|
|
3242
|
+
}
|
|
3243
|
+
|
|
3134
3244
|
.lg\:text-\[48px\] {
|
|
3135
3245
|
font-size: 48px;
|
|
3136
3246
|
}
|
|
3137
3247
|
|
|
3248
|
+
.lg\:leading-\[60px\] {
|
|
3249
|
+
line-height: 60px;
|
|
3250
|
+
}
|
|
3251
|
+
|
|
3138
3252
|
.lg\:leading-normal {
|
|
3139
3253
|
line-height: 1.5;
|
|
3140
3254
|
}
|
|
3141
3255
|
}
|
|
3142
3256
|
|
|
3257
|
+
@media (min-width: 1280px) {
|
|
3258
|
+
|
|
3259
|
+
.xl\:left-\[120px\] {
|
|
3260
|
+
left: 120px;
|
|
3261
|
+
}
|
|
3262
|
+
|
|
3263
|
+
.xl\:h-\[480px\] {
|
|
3264
|
+
height: 480px;
|
|
3265
|
+
}
|
|
3266
|
+
|
|
3267
|
+
.xl\:w-\[560px\] {
|
|
3268
|
+
width: 560px;
|
|
3269
|
+
}
|
|
3270
|
+
|
|
3271
|
+
.xl\:gap-\[10\%\] {
|
|
3272
|
+
gap: 10%;
|
|
3273
|
+
}
|
|
3274
|
+
|
|
3275
|
+
.xl\:gap-x-16 {
|
|
3276
|
+
-moz-column-gap: 4rem;
|
|
3277
|
+
column-gap: 4rem;
|
|
3278
|
+
}
|
|
3279
|
+
|
|
3280
|
+
.xl\:py-\[48px\] {
|
|
3281
|
+
padding-top: 48px;
|
|
3282
|
+
padding-bottom: 48px;
|
|
3283
|
+
}
|
|
3284
|
+
}
|
|
3285
|
+
|
|
3143
3286
|
@media (min-width: 1440px) {
|
|
3144
3287
|
|
|
3145
3288
|
.\31xl\:mx-0 {
|
|
@@ -3151,6 +3294,21 @@ select {
|
|
|
3151
3294
|
max-width: 1824px;
|
|
3152
3295
|
}
|
|
3153
3296
|
}
|
|
3297
|
+
|
|
3298
|
+
.\[\&\]\:grid {
|
|
3299
|
+
display: grid;
|
|
3300
|
+
}
|
|
3301
|
+
|
|
3302
|
+
.\[\&\]\:flex-col {
|
|
3303
|
+
flex-direction: column;
|
|
3304
|
+
}
|
|
3305
|
+
|
|
3306
|
+
@media (min-width: 1024px) {
|
|
3307
|
+
|
|
3308
|
+
.\[\&\]\:lg\:flex-row-reverse {
|
|
3309
|
+
flex-direction: row-reverse;
|
|
3310
|
+
}
|
|
3311
|
+
}
|
|
3154
3312
|
.v-modal[data-v-fbfbcd3a] {
|
|
3155
3313
|
position: fixed;
|
|
3156
3314
|
pointer-events: none;
|
|
@@ -3465,7 +3623,7 @@ select {
|
|
|
3465
3623
|
}
|
|
3466
3624
|
|
|
3467
3625
|
|
|
3468
|
-
.carousel[data-v-
|
|
3626
|
+
.carousel[data-v-88d0c225] {
|
|
3469
3627
|
margin: 1rem 0;
|
|
3470
3628
|
}
|
|
3471
3629
|
|
|
@@ -3486,18 +3644,75 @@ select {
|
|
|
3486
3644
|
-webkit-line-clamp: 4; /* Limit the text to 3 lines */
|
|
3487
3645
|
}
|
|
3488
3646
|
|
|
3489
|
-
.card[data-v-
|
|
3647
|
+
.card[data-v-b6625ed3] {
|
|
3490
3648
|
display: flex;
|
|
3491
3649
|
flex-direction: column;
|
|
3492
3650
|
align-items: center;
|
|
3493
3651
|
text-align: center
|
|
3494
3652
|
}
|
|
3495
3653
|
|
|
3496
|
-
|
|
3497
|
-
.
|
|
3654
|
+
@media (min-width: 640px) {
|
|
3655
|
+
.link-card__columns--2[data-v-c340ea5c] {
|
|
3656
|
+
grid-template-columns: repeat(2, minmax(0, 1fr))
|
|
3657
|
+
}
|
|
3658
|
+
}
|
|
3659
|
+
@media (min-width: 768px) {
|
|
3660
|
+
.link-card__columns--3[data-v-c340ea5c] {
|
|
3661
|
+
grid-template-columns: repeat(3, minmax(0, 1fr))
|
|
3662
|
+
}
|
|
3663
|
+
}
|
|
3664
|
+
@media (min-width: 640px) {
|
|
3665
|
+
.link-card__columns--4[data-v-c340ea5c] {
|
|
3666
|
+
grid-template-columns: repeat(2, minmax(0, 1fr))
|
|
3667
|
+
}
|
|
3668
|
+
}
|
|
3669
|
+
@media (min-width: 1024px) {
|
|
3670
|
+
.link-card__columns--4[data-v-c340ea5c] {
|
|
3671
|
+
grid-template-columns: repeat(4, minmax(0, 1fr))
|
|
3672
|
+
}
|
|
3673
|
+
}
|
|
3674
|
+
.link-card__columns--with-featured-image[data-v-c340ea5c] {
|
|
3675
|
+
height: -moz-fit-content;
|
|
3676
|
+
height: fit-content
|
|
3677
|
+
}
|
|
3678
|
+
.link-card__columns--with-featured-image[data-v-c340ea5c] {
|
|
3679
|
+
flex-direction: column
|
|
3680
|
+
}
|
|
3681
|
+
.link-card__columns--with-featured-image.link-card__columns--2[data-v-c340ea5c] {
|
|
3682
|
+
grid-template-columns: repeat(1, minmax(0, 1fr))
|
|
3683
|
+
}
|
|
3684
|
+
@media (min-width: 1024px) {
|
|
3685
|
+
.link-card__columns--with-featured-image.link-card__columns--2[data-v-c340ea5c] {
|
|
3686
|
+
grid-template-columns: repeat(2, minmax(0, 1fr))
|
|
3687
|
+
}
|
|
3688
|
+
}
|
|
3689
|
+
.link-card__columns--with-featured-image.link-card__columns--3[data-v-c340ea5c] {
|
|
3690
|
+
grid-template-columns: repeat(1, minmax(0, 1fr))
|
|
3691
|
+
}
|
|
3692
|
+
@media (min-width: 1280px) {
|
|
3693
|
+
.link-card__columns--with-featured-image.link-card__columns--3[data-v-c340ea5c] {
|
|
3694
|
+
grid-template-columns: repeat(3, minmax(0, 1fr))
|
|
3695
|
+
}
|
|
3696
|
+
}
|
|
3697
|
+
.link-card__columns--with-featured-image.link-card__columns--4[data-v-c340ea5c] {
|
|
3698
|
+
grid-template-columns: repeat(1, minmax(0, 1fr))
|
|
3699
|
+
}
|
|
3700
|
+
@media (min-width: 1024px) {
|
|
3701
|
+
.link-card__columns--with-featured-image.link-card__columns--4[data-v-c340ea5c] {
|
|
3702
|
+
grid-template-columns: repeat(2, minmax(0, 1fr))
|
|
3703
|
+
}
|
|
3704
|
+
}
|
|
3705
|
+
@media (min-width: 1280px) {
|
|
3706
|
+
.link-card__columns--with-featured-image.link-card__columns--4[data-v-c340ea5c] {
|
|
3707
|
+
grid-template-columns: repeat(4, minmax(0, 1fr))
|
|
3708
|
+
}
|
|
3709
|
+
}
|
|
3710
|
+
|
|
3711
|
+
.fade-enter-active[data-v-9e6ed7b6],
|
|
3712
|
+
.fade-leave-active[data-v-9e6ed7b6] {
|
|
3498
3713
|
transition: opacity 0.1s ease;
|
|
3499
3714
|
}
|
|
3500
|
-
.fade-enter-from[data-v-
|
|
3501
|
-
.fade-leave-to[data-v-
|
|
3715
|
+
.fade-enter-from[data-v-9e6ed7b6],
|
|
3716
|
+
.fade-leave-to[data-v-9e6ed7b6] {
|
|
3502
3717
|
opacity: 0;
|
|
3503
3718
|
}
|