@dcodegroup-au/page-builder 0.5.8 → 0.6.0
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 +185 -0
- package/dist/page-builder.es.js +6111 -5532
- package/dist/page-builder.umd.js +6111 -5532
- package/example/src/App.vue +5 -3
- package/example/src/pages/AssessmentSupportService.js +120 -0
- package/example/src/pages/LandingPage.js +245 -0
- package/package.json +1 -1
- package/src/assets/svg/select-type.svg +4 -0
- package/src/components/PageBuilder.vue +4 -0
- package/src/components/PageRender.vue +6 -0
- package/src/components/builders/Header.vue +18 -0
- package/src/components/builders/HorizontalTabs.vue +21 -0
- package/src/components/builders/Links.vue +1 -1
- package/src/components/helpers/pageBuilderFactory.js +1 -1
- package/src/components/presenters/modules/AccordionPricing.vue +72 -0
- package/src/components/presenters/modules/HorizontalTabs.vue +161 -0
- package/src/components/presenters/modules/Paragraph.vue +1 -1
- package/src/components/presenters/modules/StandardHeader.vue +25 -4
- package/src/components/presenters/modules/TestimonialSlider.vue +88 -0
- package/src/components/presenters/modules/TwoColumnsImageContent.vue +18 -3
- package/tailwind.config.js +5 -0
package/dist/page-builder.css
CHANGED
|
@@ -721,12 +721,18 @@ select {
|
|
|
721
721
|
.bottom-0 {
|
|
722
722
|
bottom: 0px;
|
|
723
723
|
}
|
|
724
|
+
.bottom-10 {
|
|
725
|
+
bottom: 2.5rem;
|
|
726
|
+
}
|
|
724
727
|
.left-0 {
|
|
725
728
|
left: 0px;
|
|
726
729
|
}
|
|
727
730
|
.left-1\/2 {
|
|
728
731
|
left: 50%;
|
|
729
732
|
}
|
|
733
|
+
.left-20 {
|
|
734
|
+
left: 5rem;
|
|
735
|
+
}
|
|
730
736
|
.left-5 {
|
|
731
737
|
left: 1.25rem;
|
|
732
738
|
}
|
|
@@ -820,12 +826,21 @@ select {
|
|
|
820
826
|
.\!mt-0 {
|
|
821
827
|
margin-top: 0px !important;
|
|
822
828
|
}
|
|
829
|
+
.-mb-\[140px\] {
|
|
830
|
+
margin-bottom: -140px;
|
|
831
|
+
}
|
|
823
832
|
.-mt-12 {
|
|
824
833
|
margin-top: -3rem;
|
|
825
834
|
}
|
|
826
835
|
.mb-1 {
|
|
827
836
|
margin-bottom: 0.25rem;
|
|
828
837
|
}
|
|
838
|
+
.mb-10 {
|
|
839
|
+
margin-bottom: 2.5rem;
|
|
840
|
+
}
|
|
841
|
+
.mb-12 {
|
|
842
|
+
margin-bottom: 3rem;
|
|
843
|
+
}
|
|
829
844
|
.mb-2 {
|
|
830
845
|
margin-bottom: 0.5rem;
|
|
831
846
|
}
|
|
@@ -835,21 +850,36 @@ select {
|
|
|
835
850
|
.mb-3 {
|
|
836
851
|
margin-bottom: 0.75rem;
|
|
837
852
|
}
|
|
853
|
+
.mb-36 {
|
|
854
|
+
margin-bottom: 9rem;
|
|
855
|
+
}
|
|
838
856
|
.mb-4 {
|
|
839
857
|
margin-bottom: 1rem;
|
|
840
858
|
}
|
|
841
859
|
.mb-6 {
|
|
842
860
|
margin-bottom: 1.5rem;
|
|
843
861
|
}
|
|
862
|
+
.mb-8 {
|
|
863
|
+
margin-bottom: 2rem;
|
|
864
|
+
}
|
|
844
865
|
.mb-\[40px\] {
|
|
845
866
|
margin-bottom: 40px;
|
|
846
867
|
}
|
|
868
|
+
.mb-\[48px\] {
|
|
869
|
+
margin-bottom: 48px;
|
|
870
|
+
}
|
|
847
871
|
.mb-\[64px\] {
|
|
848
872
|
margin-bottom: 64px;
|
|
849
873
|
}
|
|
874
|
+
.ml-2 {
|
|
875
|
+
margin-left: 0.5rem;
|
|
876
|
+
}
|
|
850
877
|
.mr-2 {
|
|
851
878
|
margin-right: 0.5rem;
|
|
852
879
|
}
|
|
880
|
+
.mr-3 {
|
|
881
|
+
margin-right: 0.75rem;
|
|
882
|
+
}
|
|
853
883
|
.mr-6 {
|
|
854
884
|
margin-right: 1.5rem;
|
|
855
885
|
}
|
|
@@ -928,6 +958,15 @@ select {
|
|
|
928
958
|
.h-1 {
|
|
929
959
|
height: 0.25rem;
|
|
930
960
|
}
|
|
961
|
+
.h-11 {
|
|
962
|
+
height: 2.75rem;
|
|
963
|
+
}
|
|
964
|
+
.h-12 {
|
|
965
|
+
height: 3rem;
|
|
966
|
+
}
|
|
967
|
+
.h-14 {
|
|
968
|
+
height: 3.5rem;
|
|
969
|
+
}
|
|
931
970
|
.h-3 {
|
|
932
971
|
height: 0.75rem;
|
|
933
972
|
}
|
|
@@ -1028,6 +1067,9 @@ select {
|
|
|
1028
1067
|
.min-h-\[90vh\] {
|
|
1029
1068
|
min-height: 90vh;
|
|
1030
1069
|
}
|
|
1070
|
+
.min-h-full {
|
|
1071
|
+
min-height: 100%;
|
|
1072
|
+
}
|
|
1031
1073
|
.\!w-12 {
|
|
1032
1074
|
width: 3rem !important;
|
|
1033
1075
|
}
|
|
@@ -1049,12 +1091,21 @@ select {
|
|
|
1049
1091
|
.w-10 {
|
|
1050
1092
|
width: 2.5rem;
|
|
1051
1093
|
}
|
|
1094
|
+
.w-12 {
|
|
1095
|
+
width: 3rem;
|
|
1096
|
+
}
|
|
1052
1097
|
.w-2\/3 {
|
|
1053
1098
|
width: 66.666667%;
|
|
1054
1099
|
}
|
|
1100
|
+
.w-2\/5 {
|
|
1101
|
+
width: 40%;
|
|
1102
|
+
}
|
|
1055
1103
|
.w-3 {
|
|
1056
1104
|
width: 0.75rem;
|
|
1057
1105
|
}
|
|
1106
|
+
.w-3\/5 {
|
|
1107
|
+
width: 60%;
|
|
1108
|
+
}
|
|
1058
1109
|
.w-4 {
|
|
1059
1110
|
width: 1rem;
|
|
1060
1111
|
}
|
|
@@ -1091,6 +1142,9 @@ select {
|
|
|
1091
1142
|
.w-\[28px\] {
|
|
1092
1143
|
width: 28px;
|
|
1093
1144
|
}
|
|
1145
|
+
.w-\[30rem\] {
|
|
1146
|
+
width: 30rem;
|
|
1147
|
+
}
|
|
1094
1148
|
.w-\[32px\] {
|
|
1095
1149
|
width: 32px;
|
|
1096
1150
|
}
|
|
@@ -1128,6 +1182,9 @@ select {
|
|
|
1128
1182
|
width: -moz-max-content;
|
|
1129
1183
|
width: max-content;
|
|
1130
1184
|
}
|
|
1185
|
+
.min-w-6 {
|
|
1186
|
+
min-width: 1.5rem;
|
|
1187
|
+
}
|
|
1131
1188
|
.min-w-\[24px\] {
|
|
1132
1189
|
min-width: 24px;
|
|
1133
1190
|
}
|
|
@@ -1149,6 +1206,9 @@ select {
|
|
|
1149
1206
|
.max-w-\[1280px\] {
|
|
1150
1207
|
max-width: 1280px;
|
|
1151
1208
|
}
|
|
1209
|
+
.max-w-\[1400px\] {
|
|
1210
|
+
max-width: 1400px;
|
|
1211
|
+
}
|
|
1152
1212
|
.max-w-\[1632px\] {
|
|
1153
1213
|
max-width: 1632px;
|
|
1154
1214
|
}
|
|
@@ -1170,6 +1230,9 @@ select {
|
|
|
1170
1230
|
.max-w-\[48px\] {
|
|
1171
1231
|
max-width: 48px;
|
|
1172
1232
|
}
|
|
1233
|
+
.max-w-\[51\.25rem\] {
|
|
1234
|
+
max-width: 51.25rem;
|
|
1235
|
+
}
|
|
1173
1236
|
.max-w-\[536px\] {
|
|
1174
1237
|
max-width: 536px;
|
|
1175
1238
|
}
|
|
@@ -1274,6 +1337,9 @@ select {
|
|
|
1274
1337
|
.justify-between {
|
|
1275
1338
|
justify-content: space-between;
|
|
1276
1339
|
}
|
|
1340
|
+
.justify-stretch {
|
|
1341
|
+
justify-content: stretch;
|
|
1342
|
+
}
|
|
1277
1343
|
.\!gap-4 {
|
|
1278
1344
|
gap: 1rem !important;
|
|
1279
1345
|
}
|
|
@@ -1320,11 +1386,30 @@ select {
|
|
|
1320
1386
|
-moz-column-gap: 100px;
|
|
1321
1387
|
column-gap: 100px;
|
|
1322
1388
|
}
|
|
1389
|
+
.space-x-1 > :not([hidden]) ~ :not([hidden]) {
|
|
1390
|
+
--tw-space-x-reverse: 0;
|
|
1391
|
+
margin-right: calc(0.25rem * var(--tw-space-x-reverse));
|
|
1392
|
+
margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1393
|
+
}
|
|
1394
|
+
.space-x-16 > :not([hidden]) ~ :not([hidden]) {
|
|
1395
|
+
--tw-space-x-reverse: 0;
|
|
1396
|
+
margin-right: calc(4rem * var(--tw-space-x-reverse));
|
|
1397
|
+
margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1398
|
+
}
|
|
1399
|
+
.space-x-6 > :not([hidden]) ~ :not([hidden]) {
|
|
1400
|
+
--tw-space-x-reverse: 0;
|
|
1401
|
+
margin-right: calc(1.5rem * var(--tw-space-x-reverse));
|
|
1402
|
+
margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1403
|
+
}
|
|
1323
1404
|
.divide-y > :not([hidden]) ~ :not([hidden]) {
|
|
1324
1405
|
--tw-divide-y-reverse: 0;
|
|
1325
1406
|
border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
|
|
1326
1407
|
border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
|
|
1327
1408
|
}
|
|
1409
|
+
.divide-gray-200 > :not([hidden]) ~ :not([hidden]) {
|
|
1410
|
+
--tw-divide-opacity: 1;
|
|
1411
|
+
border-color: rgb(229 231 235 / var(--tw-divide-opacity, 1));
|
|
1412
|
+
}
|
|
1328
1413
|
.overflow-auto {
|
|
1329
1414
|
overflow: auto;
|
|
1330
1415
|
}
|
|
@@ -1340,6 +1425,9 @@ select {
|
|
|
1340
1425
|
.rounded {
|
|
1341
1426
|
border-radius: 0.25rem;
|
|
1342
1427
|
}
|
|
1428
|
+
.rounded-3xl {
|
|
1429
|
+
border-radius: 1.5rem;
|
|
1430
|
+
}
|
|
1343
1431
|
.rounded-\[10px\] {
|
|
1344
1432
|
border-radius: 10px;
|
|
1345
1433
|
}
|
|
@@ -1390,12 +1478,18 @@ select {
|
|
|
1390
1478
|
.rounded-bl-\[0px\] {
|
|
1391
1479
|
border-bottom-left-radius: 0px;
|
|
1392
1480
|
}
|
|
1481
|
+
.rounded-br-3xl {
|
|
1482
|
+
border-bottom-right-radius: 1.5rem;
|
|
1483
|
+
}
|
|
1393
1484
|
.rounded-br-\[24px\] {
|
|
1394
1485
|
border-bottom-right-radius: 24px;
|
|
1395
1486
|
}
|
|
1396
1487
|
.rounded-br-\[48px\] {
|
|
1397
1488
|
border-bottom-right-radius: 48px;
|
|
1398
1489
|
}
|
|
1490
|
+
.rounded-tl-3xl {
|
|
1491
|
+
border-top-left-radius: 1.5rem;
|
|
1492
|
+
}
|
|
1399
1493
|
.rounded-tl-\[24px\] {
|
|
1400
1494
|
border-top-left-radius: 24px;
|
|
1401
1495
|
}
|
|
@@ -1525,6 +1619,10 @@ select {
|
|
|
1525
1619
|
--tw-bg-opacity: 1;
|
|
1526
1620
|
background-color: rgb(230 203 219 / var(--tw-bg-opacity, 1));
|
|
1527
1621
|
}
|
|
1622
|
+
.bg-brand-25 {
|
|
1623
|
+
--tw-bg-opacity: 1;
|
|
1624
|
+
background-color: rgb(245 239 243 / var(--tw-bg-opacity, 1));
|
|
1625
|
+
}
|
|
1528
1626
|
.bg-brand-50 {
|
|
1529
1627
|
--tw-bg-opacity: 1;
|
|
1530
1628
|
background-color: rgb(237 222 231 / var(--tw-bg-opacity, 1));
|
|
@@ -1561,6 +1659,10 @@ select {
|
|
|
1561
1659
|
--tw-bg-opacity: 1;
|
|
1562
1660
|
background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
|
|
1563
1661
|
}
|
|
1662
|
+
.bg-navy-100 {
|
|
1663
|
+
--tw-bg-opacity: 1;
|
|
1664
|
+
background-color: rgb(169 184 198 / var(--tw-bg-opacity, 1));
|
|
1665
|
+
}
|
|
1564
1666
|
.bg-navy-25 {
|
|
1565
1667
|
--tw-bg-opacity: 1;
|
|
1566
1668
|
background-color: rgb(239 242 245 / var(--tw-bg-opacity, 1));
|
|
@@ -1593,6 +1695,10 @@ select {
|
|
|
1593
1695
|
--tw-bg-opacity: 1;
|
|
1594
1696
|
background-color: rgb(251 245 244 / var(--tw-bg-opacity, 1));
|
|
1595
1697
|
}
|
|
1698
|
+
.bg-success-100 {
|
|
1699
|
+
--tw-bg-opacity: 1;
|
|
1700
|
+
background-color: rgb(220 250 230 / var(--tw-bg-opacity, 1));
|
|
1701
|
+
}
|
|
1596
1702
|
.bg-transparent {
|
|
1597
1703
|
background-color: transparent;
|
|
1598
1704
|
}
|
|
@@ -1614,6 +1720,9 @@ select {
|
|
|
1614
1720
|
.p-1 {
|
|
1615
1721
|
padding: 0.25rem;
|
|
1616
1722
|
}
|
|
1723
|
+
.p-10 {
|
|
1724
|
+
padding: 2.5rem;
|
|
1725
|
+
}
|
|
1617
1726
|
.p-16 {
|
|
1618
1727
|
padding: 4rem;
|
|
1619
1728
|
}
|
|
@@ -1640,6 +1749,14 @@ select {
|
|
|
1640
1749
|
padding-left: 0px;
|
|
1641
1750
|
padding-right: 0px;
|
|
1642
1751
|
}
|
|
1752
|
+
.px-1\.5 {
|
|
1753
|
+
padding-left: 0.375rem;
|
|
1754
|
+
padding-right: 0.375rem;
|
|
1755
|
+
}
|
|
1756
|
+
.px-12 {
|
|
1757
|
+
padding-left: 3rem;
|
|
1758
|
+
padding-right: 3rem;
|
|
1759
|
+
}
|
|
1643
1760
|
.px-2 {
|
|
1644
1761
|
padding-left: 0.5rem;
|
|
1645
1762
|
padding-right: 0.5rem;
|
|
@@ -1668,6 +1785,10 @@ select {
|
|
|
1668
1785
|
padding-left: 1.5rem;
|
|
1669
1786
|
padding-right: 1.5rem;
|
|
1670
1787
|
}
|
|
1788
|
+
.px-8 {
|
|
1789
|
+
padding-left: 2rem;
|
|
1790
|
+
padding-right: 2rem;
|
|
1791
|
+
}
|
|
1671
1792
|
.px-\[10px\] {
|
|
1672
1793
|
padding-left: 10px;
|
|
1673
1794
|
padding-right: 10px;
|
|
@@ -1760,6 +1881,9 @@ select {
|
|
|
1760
1881
|
.pb-3 {
|
|
1761
1882
|
padding-bottom: 0.75rem;
|
|
1762
1883
|
}
|
|
1884
|
+
.pb-32 {
|
|
1885
|
+
padding-bottom: 8rem;
|
|
1886
|
+
}
|
|
1763
1887
|
.pb-4 {
|
|
1764
1888
|
padding-bottom: 1rem;
|
|
1765
1889
|
}
|
|
@@ -1818,13 +1942,24 @@ select {
|
|
|
1818
1942
|
font-size: 1rem !important;
|
|
1819
1943
|
line-height: 1.5rem !important;
|
|
1820
1944
|
}
|
|
1945
|
+
.text-3xl {
|
|
1946
|
+
font-size: 1.875rem;
|
|
1947
|
+
line-height: 2.25rem;
|
|
1948
|
+
}
|
|
1821
1949
|
.text-4xl {
|
|
1822
1950
|
font-size: 2.25rem;
|
|
1823
1951
|
line-height: 2.5rem;
|
|
1824
1952
|
}
|
|
1953
|
+
.text-5xl {
|
|
1954
|
+
font-size: 3rem;
|
|
1955
|
+
line-height: 1;
|
|
1956
|
+
}
|
|
1825
1957
|
.text-\[13px\] {
|
|
1826
1958
|
font-size: 13px;
|
|
1827
1959
|
}
|
|
1960
|
+
.text-\[16px\] {
|
|
1961
|
+
font-size: 16px;
|
|
1962
|
+
}
|
|
1828
1963
|
.text-\[18px\] {
|
|
1829
1964
|
font-size: 18px;
|
|
1830
1965
|
}
|
|
@@ -1837,6 +1972,9 @@ select {
|
|
|
1837
1972
|
.text-\[30px\] {
|
|
1838
1973
|
font-size: 30px;
|
|
1839
1974
|
}
|
|
1975
|
+
.text-\[32px\] {
|
|
1976
|
+
font-size: 32px;
|
|
1977
|
+
}
|
|
1840
1978
|
.text-\[36px\] {
|
|
1841
1979
|
font-size: 36px;
|
|
1842
1980
|
}
|
|
@@ -1866,6 +2004,9 @@ select {
|
|
|
1866
2004
|
font-size: 0.75rem;
|
|
1867
2005
|
line-height: 1rem;
|
|
1868
2006
|
}
|
|
2007
|
+
.font-bold {
|
|
2008
|
+
font-weight: 700;
|
|
2009
|
+
}
|
|
1869
2010
|
.font-medium {
|
|
1870
2011
|
font-weight: 500;
|
|
1871
2012
|
}
|
|
@@ -1881,9 +2022,18 @@ select {
|
|
|
1881
2022
|
.italic {
|
|
1882
2023
|
font-style: italic;
|
|
1883
2024
|
}
|
|
2025
|
+
.leading-10 {
|
|
2026
|
+
line-height: 2.5rem;
|
|
2027
|
+
}
|
|
1884
2028
|
.leading-6 {
|
|
1885
2029
|
line-height: 1.5rem;
|
|
1886
2030
|
}
|
|
2031
|
+
.leading-8 {
|
|
2032
|
+
line-height: 2rem;
|
|
2033
|
+
}
|
|
2034
|
+
.leading-9 {
|
|
2035
|
+
line-height: 2.25rem;
|
|
2036
|
+
}
|
|
1887
2037
|
.leading-\[24px\] {
|
|
1888
2038
|
line-height: 24px;
|
|
1889
2039
|
}
|
|
@@ -1955,6 +2105,10 @@ select {
|
|
|
1955
2105
|
--tw-text-opacity: 1;
|
|
1956
2106
|
color: rgb(217 45 32 / var(--tw-text-opacity, 1));
|
|
1957
2107
|
}
|
|
2108
|
+
.text-gray-200 {
|
|
2109
|
+
--tw-text-opacity: 1;
|
|
2110
|
+
color: rgb(229 231 235 / var(--tw-text-opacity, 1));
|
|
2111
|
+
}
|
|
1958
2112
|
.text-gray-400 {
|
|
1959
2113
|
--tw-text-opacity: 1;
|
|
1960
2114
|
color: rgb(156 163 175 / var(--tw-text-opacity, 1));
|
|
@@ -1983,6 +2137,10 @@ select {
|
|
|
1983
2137
|
--tw-text-opacity: 1;
|
|
1984
2138
|
color: rgb(223 229 236 / var(--tw-text-opacity, 1));
|
|
1985
2139
|
}
|
|
2140
|
+
.text-navy-600 {
|
|
2141
|
+
--tw-text-opacity: 1;
|
|
2142
|
+
color: rgb(62 95 126 / var(--tw-text-opacity, 1));
|
|
2143
|
+
}
|
|
1986
2144
|
.text-navy-700 {
|
|
1987
2145
|
--tw-text-opacity: 1;
|
|
1988
2146
|
color: rgb(40 77 112 / var(--tw-text-opacity, 1));
|
|
@@ -1995,10 +2153,18 @@ select {
|
|
|
1995
2153
|
--tw-text-opacity: 1;
|
|
1996
2154
|
color: rgb(185 56 21 / var(--tw-text-opacity, 1));
|
|
1997
2155
|
}
|
|
2156
|
+
.text-success-500 {
|
|
2157
|
+
--tw-text-opacity: 1;
|
|
2158
|
+
color: rgb(23 178 106 / var(--tw-text-opacity, 1));
|
|
2159
|
+
}
|
|
1998
2160
|
.text-white {
|
|
1999
2161
|
--tw-text-opacity: 1;
|
|
2000
2162
|
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
2001
2163
|
}
|
|
2164
|
+
.text-yellow-100 {
|
|
2165
|
+
--tw-text-opacity: 1;
|
|
2166
|
+
color: rgb(218 170 0 / var(--tw-text-opacity, 1));
|
|
2167
|
+
}
|
|
2002
2168
|
.underline {
|
|
2003
2169
|
text-decoration-line: underline;
|
|
2004
2170
|
}
|
|
@@ -2013,6 +2179,11 @@ select {
|
|
|
2013
2179
|
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
2014
2180
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2015
2181
|
}
|
|
2182
|
+
.shadow-sm {
|
|
2183
|
+
--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
2184
|
+
--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
|
|
2185
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2186
|
+
}
|
|
2016
2187
|
.ring {
|
|
2017
2188
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2018
2189
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
@@ -2681,6 +2852,11 @@ select {
|
|
|
2681
2852
|
border-color: rgb(147 28 97 / var(--tw-border-opacity, 1));
|
|
2682
2853
|
}
|
|
2683
2854
|
|
|
2855
|
+
.hover\:border-gray-400:hover {
|
|
2856
|
+
--tw-border-opacity: 1;
|
|
2857
|
+
border-color: rgb(156 163 175 / var(--tw-border-opacity, 1));
|
|
2858
|
+
}
|
|
2859
|
+
|
|
2684
2860
|
.hover\:\!bg-brand-700:hover {
|
|
2685
2861
|
--tw-bg-opacity: 1 !important;
|
|
2686
2862
|
background-color: rgb(147 28 97 / var(--tw-bg-opacity, 1)) !important;
|
|
@@ -3305,3 +3481,12 @@ select {
|
|
|
3305
3481
|
align-items: center;
|
|
3306
3482
|
text-align: center
|
|
3307
3483
|
}
|
|
3484
|
+
|
|
3485
|
+
.fade-enter-active[data-v-25ca07bb],
|
|
3486
|
+
.fade-leave-active[data-v-25ca07bb] {
|
|
3487
|
+
transition: opacity 0.4s ease;
|
|
3488
|
+
}
|
|
3489
|
+
.fade-enter-from[data-v-25ca07bb],
|
|
3490
|
+
.fade-leave-to[data-v-25ca07bb] {
|
|
3491
|
+
opacity: 0;
|
|
3492
|
+
}
|