@designcrowd/fe-shared-lib 1.4.3 → 1.4.4-promocardv0
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/css/tailwind-brandCrowd.css +6 -6
- package/dist/css/tailwind-brandPage.css +6 -6
- package/dist/css/tailwind-crazyDomains.css +6 -6
- package/dist/css/tailwind-designCom.css +6 -6
- package/dist/css/tailwind-designCrowd.css +6 -6
- package/index.js +1 -0
- package/package.json +1 -1
- package/public/css/tailwind-brandCrowd.css +74 -3
- package/public/css/tailwind-brandPage.css +74 -3
- package/public/css/tailwind-crazyDomains.css +74 -3
- package/public/css/tailwind-designCom.css +74 -3
- package/public/css/tailwind-designCrowd.css +74 -3
- package/src/atoms/components/Carousel/Carousel.fixtures.js +18 -0
- package/src/atoms/components/Carousel/carousel.stories.js +448 -179
- package/src/atoms/components/PromoCard/PromoCard.stories.ts +265 -0
- package/src/atoms/components/PromoCard/PromoCard.vue +89 -0
- package/src/experiences/clients/brand-crowd-api.client.js +12 -1
- package/src/experiences/components/UploadYourLogoApplication/UploadYourLogoApplication.vue +6 -0
- package/src/experiences/components/UploadYourLogoOnBoarding/LogoUploader.vue +6 -1
- package/src/experiences/components/UploadYourLogoOnBoarding/UploadYourLogoOnBoarding.vue +6 -0
- package/tailwind.config.js +7 -8
|
@@ -717,9 +717,6 @@ video {
|
|
|
717
717
|
.tw-ml-4 {
|
|
718
718
|
margin-left: 1rem;
|
|
719
719
|
}
|
|
720
|
-
.tw-ml-6 {
|
|
721
|
-
margin-left: 1.5rem;
|
|
722
|
-
}
|
|
723
720
|
.tw-ml-auto {
|
|
724
721
|
margin-left: auto;
|
|
725
722
|
}
|
|
@@ -741,9 +738,6 @@ video {
|
|
|
741
738
|
.tw-mt-0 {
|
|
742
739
|
margin-top: 0px;
|
|
743
740
|
}
|
|
744
|
-
.tw-mt-0\.5 {
|
|
745
|
-
margin-top: 0.125rem;
|
|
746
|
-
}
|
|
747
741
|
.tw-mt-1 {
|
|
748
742
|
margin-top: 0.25rem;
|
|
749
743
|
}
|
|
@@ -1606,6 +1600,9 @@ video {
|
|
|
1606
1600
|
.tw-p-4 {
|
|
1607
1601
|
padding: 1rem;
|
|
1608
1602
|
}
|
|
1603
|
+
.tw-p-5 {
|
|
1604
|
+
padding: 1.25rem;
|
|
1605
|
+
}
|
|
1609
1606
|
.tw-p-6 {
|
|
1610
1607
|
padding: 1.5rem;
|
|
1611
1608
|
}
|
|
@@ -1741,6 +1738,9 @@ video {
|
|
|
1741
1738
|
.tw-pt-2 {
|
|
1742
1739
|
padding-top: 0.5rem;
|
|
1743
1740
|
}
|
|
1741
|
+
.tw-pt-4 {
|
|
1742
|
+
padding-top: 1rem;
|
|
1743
|
+
}
|
|
1744
1744
|
.tw-pt-6 {
|
|
1745
1745
|
padding-top: 1.5rem;
|
|
1746
1746
|
}
|
|
@@ -717,9 +717,6 @@ video {
|
|
|
717
717
|
.tw-ml-4 {
|
|
718
718
|
margin-left: 1rem;
|
|
719
719
|
}
|
|
720
|
-
.tw-ml-6 {
|
|
721
|
-
margin-left: 1.5rem;
|
|
722
|
-
}
|
|
723
720
|
.tw-ml-auto {
|
|
724
721
|
margin-left: auto;
|
|
725
722
|
}
|
|
@@ -741,9 +738,6 @@ video {
|
|
|
741
738
|
.tw-mt-0 {
|
|
742
739
|
margin-top: 0px;
|
|
743
740
|
}
|
|
744
|
-
.tw-mt-0\.5 {
|
|
745
|
-
margin-top: 0.125rem;
|
|
746
|
-
}
|
|
747
741
|
.tw-mt-1 {
|
|
748
742
|
margin-top: 0.25rem;
|
|
749
743
|
}
|
|
@@ -1454,6 +1448,9 @@ video {
|
|
|
1454
1448
|
.tw-p-4 {
|
|
1455
1449
|
padding: 1rem;
|
|
1456
1450
|
}
|
|
1451
|
+
.tw-p-5 {
|
|
1452
|
+
padding: 1.25rem;
|
|
1453
|
+
}
|
|
1457
1454
|
.tw-p-6 {
|
|
1458
1455
|
padding: 1.5rem;
|
|
1459
1456
|
}
|
|
@@ -1589,6 +1586,9 @@ video {
|
|
|
1589
1586
|
.tw-pt-2 {
|
|
1590
1587
|
padding-top: 0.5rem;
|
|
1591
1588
|
}
|
|
1589
|
+
.tw-pt-4 {
|
|
1590
|
+
padding-top: 1rem;
|
|
1591
|
+
}
|
|
1592
1592
|
.tw-pt-6 {
|
|
1593
1593
|
padding-top: 1.5rem;
|
|
1594
1594
|
}
|
|
@@ -717,9 +717,6 @@ video {
|
|
|
717
717
|
.tw-ml-4 {
|
|
718
718
|
margin-left: 1rem;
|
|
719
719
|
}
|
|
720
|
-
.tw-ml-6 {
|
|
721
|
-
margin-left: 1.5rem;
|
|
722
|
-
}
|
|
723
720
|
.tw-ml-auto {
|
|
724
721
|
margin-left: auto;
|
|
725
722
|
}
|
|
@@ -741,9 +738,6 @@ video {
|
|
|
741
738
|
.tw-mt-0 {
|
|
742
739
|
margin-top: 0px;
|
|
743
740
|
}
|
|
744
|
-
.tw-mt-0\.5 {
|
|
745
|
-
margin-top: 0.125rem;
|
|
746
|
-
}
|
|
747
741
|
.tw-mt-1 {
|
|
748
742
|
margin-top: 0.25rem;
|
|
749
743
|
}
|
|
@@ -1606,6 +1600,9 @@ video {
|
|
|
1606
1600
|
.tw-p-4 {
|
|
1607
1601
|
padding: 1rem;
|
|
1608
1602
|
}
|
|
1603
|
+
.tw-p-5 {
|
|
1604
|
+
padding: 1.25rem;
|
|
1605
|
+
}
|
|
1609
1606
|
.tw-p-6 {
|
|
1610
1607
|
padding: 1.5rem;
|
|
1611
1608
|
}
|
|
@@ -1741,6 +1738,9 @@ video {
|
|
|
1741
1738
|
.tw-pt-2 {
|
|
1742
1739
|
padding-top: 0.5rem;
|
|
1743
1740
|
}
|
|
1741
|
+
.tw-pt-4 {
|
|
1742
|
+
padding-top: 1rem;
|
|
1743
|
+
}
|
|
1744
1744
|
.tw-pt-6 {
|
|
1745
1745
|
padding-top: 1.5rem;
|
|
1746
1746
|
}
|
|
@@ -717,9 +717,6 @@ video {
|
|
|
717
717
|
.tw-ml-4 {
|
|
718
718
|
margin-left: 1rem;
|
|
719
719
|
}
|
|
720
|
-
.tw-ml-6 {
|
|
721
|
-
margin-left: 1.5rem;
|
|
722
|
-
}
|
|
723
720
|
.tw-ml-auto {
|
|
724
721
|
margin-left: auto;
|
|
725
722
|
}
|
|
@@ -741,9 +738,6 @@ video {
|
|
|
741
738
|
.tw-mt-0 {
|
|
742
739
|
margin-top: 0px;
|
|
743
740
|
}
|
|
744
|
-
.tw-mt-0\.5 {
|
|
745
|
-
margin-top: 0.125rem;
|
|
746
|
-
}
|
|
747
741
|
.tw-mt-1 {
|
|
748
742
|
margin-top: 0.25rem;
|
|
749
743
|
}
|
|
@@ -1606,6 +1600,9 @@ video {
|
|
|
1606
1600
|
.tw-p-4 {
|
|
1607
1601
|
padding: 1rem;
|
|
1608
1602
|
}
|
|
1603
|
+
.tw-p-5 {
|
|
1604
|
+
padding: 1.25rem;
|
|
1605
|
+
}
|
|
1609
1606
|
.tw-p-6 {
|
|
1610
1607
|
padding: 1.5rem;
|
|
1611
1608
|
}
|
|
@@ -1741,6 +1738,9 @@ video {
|
|
|
1741
1738
|
.tw-pt-2 {
|
|
1742
1739
|
padding-top: 0.5rem;
|
|
1743
1740
|
}
|
|
1741
|
+
.tw-pt-4 {
|
|
1742
|
+
padding-top: 1rem;
|
|
1743
|
+
}
|
|
1744
1744
|
.tw-pt-6 {
|
|
1745
1745
|
padding-top: 1.5rem;
|
|
1746
1746
|
}
|
|
@@ -717,9 +717,6 @@ video {
|
|
|
717
717
|
.tw-ml-4 {
|
|
718
718
|
margin-left: 1rem;
|
|
719
719
|
}
|
|
720
|
-
.tw-ml-6 {
|
|
721
|
-
margin-left: 1.5rem;
|
|
722
|
-
}
|
|
723
720
|
.tw-ml-auto {
|
|
724
721
|
margin-left: auto;
|
|
725
722
|
}
|
|
@@ -741,9 +738,6 @@ video {
|
|
|
741
738
|
.tw-mt-0 {
|
|
742
739
|
margin-top: 0px;
|
|
743
740
|
}
|
|
744
|
-
.tw-mt-0\.5 {
|
|
745
|
-
margin-top: 0.125rem;
|
|
746
|
-
}
|
|
747
741
|
.tw-mt-1 {
|
|
748
742
|
margin-top: 0.25rem;
|
|
749
743
|
}
|
|
@@ -1606,6 +1600,9 @@ video {
|
|
|
1606
1600
|
.tw-p-4 {
|
|
1607
1601
|
padding: 1rem;
|
|
1608
1602
|
}
|
|
1603
|
+
.tw-p-5 {
|
|
1604
|
+
padding: 1.25rem;
|
|
1605
|
+
}
|
|
1609
1606
|
.tw-p-6 {
|
|
1610
1607
|
padding: 1.5rem;
|
|
1611
1608
|
}
|
|
@@ -1741,6 +1738,9 @@ video {
|
|
|
1741
1738
|
.tw-pt-2 {
|
|
1742
1739
|
padding-top: 0.5rem;
|
|
1743
1740
|
}
|
|
1741
|
+
.tw-pt-4 {
|
|
1742
|
+
padding-top: 1rem;
|
|
1743
|
+
}
|
|
1744
1744
|
.tw-pt-6 {
|
|
1745
1745
|
padding-top: 1.5rem;
|
|
1746
1746
|
}
|
package/index.js
CHANGED
|
@@ -32,6 +32,7 @@ export { default as Loader } from './src/atoms/components/Loader/Loader.vue';
|
|
|
32
32
|
export { default as Tooltip } from './src/atoms/components/Tooltip/Tooltip.vue';
|
|
33
33
|
export { default as Picture } from './src/atoms/components/Picture/Picture.vue';
|
|
34
34
|
export { default as HelloBar } from './src/atoms/components/HelloBar/HelloBar.vue';
|
|
35
|
+
export { default as PromoCard } from './src/atoms/components/PromoCard/PromoCard.vue';
|
|
35
36
|
export { default as SearchBar } from './src/atoms/components/SearchBar/SearchBar.vue';
|
|
36
37
|
export { default as StarRating } from './src/atoms/components/StarRating/StarRating.vue';
|
|
37
38
|
export { default as TabMenu } from './src/atoms/components/TabMenu/TabMenu.vue';
|
package/package.json
CHANGED
|
@@ -738,9 +738,6 @@ video {
|
|
|
738
738
|
.theme-brandCrowd .tw-mt-0 {
|
|
739
739
|
margin-top: 0px;
|
|
740
740
|
}
|
|
741
|
-
.theme-brandCrowd .tw-mt-0\.5 {
|
|
742
|
-
margin-top: 0.125rem;
|
|
743
|
-
}
|
|
744
741
|
.theme-brandCrowd .tw-mt-1 {
|
|
745
742
|
margin-top: 0.25rem;
|
|
746
743
|
}
|
|
@@ -753,6 +750,9 @@ video {
|
|
|
753
750
|
.theme-brandCrowd .tw-mt-4 {
|
|
754
751
|
margin-top: 1rem;
|
|
755
752
|
}
|
|
753
|
+
.theme-brandCrowd .tw-mt-6 {
|
|
754
|
+
margin-top: 1.5rem;
|
|
755
|
+
}
|
|
756
756
|
.theme-brandCrowd .tw-mt-8 {
|
|
757
757
|
margin-top: 2rem;
|
|
758
758
|
}
|
|
@@ -762,6 +762,48 @@ video {
|
|
|
762
762
|
.theme-brandCrowd .tw-box-content {
|
|
763
763
|
box-sizing: content-box;
|
|
764
764
|
}
|
|
765
|
+
.theme-brandCrowd .tw-line-clamp-1 {
|
|
766
|
+
overflow: hidden;
|
|
767
|
+
display: -webkit-box;
|
|
768
|
+
-webkit-box-orient: vertical;
|
|
769
|
+
-webkit-line-clamp: 1;
|
|
770
|
+
}
|
|
771
|
+
.theme-brandCrowd .tw-line-clamp-2 {
|
|
772
|
+
overflow: hidden;
|
|
773
|
+
display: -webkit-box;
|
|
774
|
+
-webkit-box-orient: vertical;
|
|
775
|
+
-webkit-line-clamp: 2;
|
|
776
|
+
}
|
|
777
|
+
.theme-brandCrowd .tw-line-clamp-3 {
|
|
778
|
+
overflow: hidden;
|
|
779
|
+
display: -webkit-box;
|
|
780
|
+
-webkit-box-orient: vertical;
|
|
781
|
+
-webkit-line-clamp: 3;
|
|
782
|
+
}
|
|
783
|
+
.theme-brandCrowd .tw-line-clamp-4 {
|
|
784
|
+
overflow: hidden;
|
|
785
|
+
display: -webkit-box;
|
|
786
|
+
-webkit-box-orient: vertical;
|
|
787
|
+
-webkit-line-clamp: 4;
|
|
788
|
+
}
|
|
789
|
+
.theme-brandCrowd .tw-line-clamp-5 {
|
|
790
|
+
overflow: hidden;
|
|
791
|
+
display: -webkit-box;
|
|
792
|
+
-webkit-box-orient: vertical;
|
|
793
|
+
-webkit-line-clamp: 5;
|
|
794
|
+
}
|
|
795
|
+
.theme-brandCrowd .tw-line-clamp-6 {
|
|
796
|
+
overflow: hidden;
|
|
797
|
+
display: -webkit-box;
|
|
798
|
+
-webkit-box-orient: vertical;
|
|
799
|
+
-webkit-line-clamp: 6;
|
|
800
|
+
}
|
|
801
|
+
.theme-brandCrowd .tw-line-clamp-none {
|
|
802
|
+
overflow: visible;
|
|
803
|
+
display: block;
|
|
804
|
+
-webkit-box-orient: horizontal;
|
|
805
|
+
-webkit-line-clamp: none;
|
|
806
|
+
}
|
|
765
807
|
.theme-brandCrowd .tw-block {
|
|
766
808
|
display: block;
|
|
767
809
|
}
|
|
@@ -1091,6 +1133,9 @@ video {
|
|
|
1091
1133
|
.theme-brandCrowd .tw-items-stretch {
|
|
1092
1134
|
align-items: stretch;
|
|
1093
1135
|
}
|
|
1136
|
+
.theme-brandCrowd .tw-justify-normal {
|
|
1137
|
+
justify-content: normal;
|
|
1138
|
+
}
|
|
1094
1139
|
.theme-brandCrowd .tw-justify-start {
|
|
1095
1140
|
justify-content: flex-start;
|
|
1096
1141
|
}
|
|
@@ -1141,6 +1186,9 @@ video {
|
|
|
1141
1186
|
text-overflow: ellipsis;
|
|
1142
1187
|
white-space: nowrap;
|
|
1143
1188
|
}
|
|
1189
|
+
.theme-brandCrowd .tw-text-ellipsis {
|
|
1190
|
+
text-overflow: ellipsis;
|
|
1191
|
+
}
|
|
1144
1192
|
.theme-brandCrowd .tw-whitespace-nowrap {
|
|
1145
1193
|
white-space: nowrap;
|
|
1146
1194
|
}
|
|
@@ -1603,6 +1651,9 @@ video {
|
|
|
1603
1651
|
.theme-brandCrowd .tw-p-4 {
|
|
1604
1652
|
padding: 1rem;
|
|
1605
1653
|
}
|
|
1654
|
+
.theme-brandCrowd .tw-p-5 {
|
|
1655
|
+
padding: 1.25rem;
|
|
1656
|
+
}
|
|
1606
1657
|
.theme-brandCrowd .tw-p-6 {
|
|
1607
1658
|
padding: 1.5rem;
|
|
1608
1659
|
}
|
|
@@ -1617,6 +1668,10 @@ video {
|
|
|
1617
1668
|
padding-left: 0.125rem;
|
|
1618
1669
|
padding-right: 0.125rem;
|
|
1619
1670
|
}
|
|
1671
|
+
.theme-brandCrowd .tw-px-10 {
|
|
1672
|
+
padding-left: 2.5rem;
|
|
1673
|
+
padding-right: 2.5rem;
|
|
1674
|
+
}
|
|
1620
1675
|
.theme-brandCrowd .tw-px-2 {
|
|
1621
1676
|
padding-left: 0.5rem;
|
|
1622
1677
|
padding-right: 0.5rem;
|
|
@@ -1738,6 +1793,9 @@ video {
|
|
|
1738
1793
|
.theme-brandCrowd .tw-pt-2 {
|
|
1739
1794
|
padding-top: 0.5rem;
|
|
1740
1795
|
}
|
|
1796
|
+
.theme-brandCrowd .tw-pt-4 {
|
|
1797
|
+
padding-top: 1rem;
|
|
1798
|
+
}
|
|
1741
1799
|
.theme-brandCrowd .tw-pt-6 {
|
|
1742
1800
|
padding-top: 1.5rem;
|
|
1743
1801
|
}
|
|
@@ -2327,6 +2385,10 @@ video {
|
|
|
2327
2385
|
.theme-brandCrowd .md\:tw-p-8 {
|
|
2328
2386
|
padding: 2rem;
|
|
2329
2387
|
}
|
|
2388
|
+
.theme-brandCrowd .md\:tw-px-12 {
|
|
2389
|
+
padding-left: 3rem;
|
|
2390
|
+
padding-right: 3rem;
|
|
2391
|
+
}
|
|
2330
2392
|
.theme-brandCrowd .md\:tw-px-4 {
|
|
2331
2393
|
padding-left: 1rem;
|
|
2332
2394
|
padding-right: 1rem;
|
|
@@ -2367,12 +2429,18 @@ video {
|
|
|
2367
2429
|
.theme-brandCrowd .lg\:tw-mr-8 {
|
|
2368
2430
|
margin-right: 2rem;
|
|
2369
2431
|
}
|
|
2432
|
+
.theme-brandCrowd .lg\:tw-mt-0 {
|
|
2433
|
+
margin-top: 0px;
|
|
2434
|
+
}
|
|
2370
2435
|
.theme-brandCrowd .lg\:tw-flex {
|
|
2371
2436
|
display: flex;
|
|
2372
2437
|
}
|
|
2373
2438
|
.theme-brandCrowd .lg\:tw-h-auto {
|
|
2374
2439
|
height: auto;
|
|
2375
2440
|
}
|
|
2441
|
+
.theme-brandCrowd .lg\:tw-w-auto {
|
|
2442
|
+
width: auto;
|
|
2443
|
+
}
|
|
2376
2444
|
.theme-brandCrowd .lg\:tw-max-w-xl {
|
|
2377
2445
|
max-width: 36rem;
|
|
2378
2446
|
}
|
|
@@ -2382,6 +2450,9 @@ video {
|
|
|
2382
2450
|
.theme-brandCrowd .lg\:tw-items-center {
|
|
2383
2451
|
align-items: center;
|
|
2384
2452
|
}
|
|
2453
|
+
.theme-brandCrowd .lg\:tw-justify-normal {
|
|
2454
|
+
justify-content: normal;
|
|
2455
|
+
}
|
|
2385
2456
|
.theme-brandCrowd .lg\:tw-overflow-visible {
|
|
2386
2457
|
overflow: visible;
|
|
2387
2458
|
}
|
|
@@ -738,9 +738,6 @@ video {
|
|
|
738
738
|
.theme-brandPage .tw-mt-0 {
|
|
739
739
|
margin-top: 0px;
|
|
740
740
|
}
|
|
741
|
-
.theme-brandPage .tw-mt-0\.5 {
|
|
742
|
-
margin-top: 0.125rem;
|
|
743
|
-
}
|
|
744
741
|
.theme-brandPage .tw-mt-1 {
|
|
745
742
|
margin-top: 0.25rem;
|
|
746
743
|
}
|
|
@@ -753,6 +750,9 @@ video {
|
|
|
753
750
|
.theme-brandPage .tw-mt-4 {
|
|
754
751
|
margin-top: 1rem;
|
|
755
752
|
}
|
|
753
|
+
.theme-brandPage .tw-mt-6 {
|
|
754
|
+
margin-top: 1.5rem;
|
|
755
|
+
}
|
|
756
756
|
.theme-brandPage .tw-mt-8 {
|
|
757
757
|
margin-top: 2rem;
|
|
758
758
|
}
|
|
@@ -762,6 +762,48 @@ video {
|
|
|
762
762
|
.theme-brandPage .tw-box-content {
|
|
763
763
|
box-sizing: content-box;
|
|
764
764
|
}
|
|
765
|
+
.theme-brandPage .tw-line-clamp-1 {
|
|
766
|
+
overflow: hidden;
|
|
767
|
+
display: -webkit-box;
|
|
768
|
+
-webkit-box-orient: vertical;
|
|
769
|
+
-webkit-line-clamp: 1;
|
|
770
|
+
}
|
|
771
|
+
.theme-brandPage .tw-line-clamp-2 {
|
|
772
|
+
overflow: hidden;
|
|
773
|
+
display: -webkit-box;
|
|
774
|
+
-webkit-box-orient: vertical;
|
|
775
|
+
-webkit-line-clamp: 2;
|
|
776
|
+
}
|
|
777
|
+
.theme-brandPage .tw-line-clamp-3 {
|
|
778
|
+
overflow: hidden;
|
|
779
|
+
display: -webkit-box;
|
|
780
|
+
-webkit-box-orient: vertical;
|
|
781
|
+
-webkit-line-clamp: 3;
|
|
782
|
+
}
|
|
783
|
+
.theme-brandPage .tw-line-clamp-4 {
|
|
784
|
+
overflow: hidden;
|
|
785
|
+
display: -webkit-box;
|
|
786
|
+
-webkit-box-orient: vertical;
|
|
787
|
+
-webkit-line-clamp: 4;
|
|
788
|
+
}
|
|
789
|
+
.theme-brandPage .tw-line-clamp-5 {
|
|
790
|
+
overflow: hidden;
|
|
791
|
+
display: -webkit-box;
|
|
792
|
+
-webkit-box-orient: vertical;
|
|
793
|
+
-webkit-line-clamp: 5;
|
|
794
|
+
}
|
|
795
|
+
.theme-brandPage .tw-line-clamp-6 {
|
|
796
|
+
overflow: hidden;
|
|
797
|
+
display: -webkit-box;
|
|
798
|
+
-webkit-box-orient: vertical;
|
|
799
|
+
-webkit-line-clamp: 6;
|
|
800
|
+
}
|
|
801
|
+
.theme-brandPage .tw-line-clamp-none {
|
|
802
|
+
overflow: visible;
|
|
803
|
+
display: block;
|
|
804
|
+
-webkit-box-orient: horizontal;
|
|
805
|
+
-webkit-line-clamp: none;
|
|
806
|
+
}
|
|
765
807
|
.theme-brandPage .tw-block {
|
|
766
808
|
display: block;
|
|
767
809
|
}
|
|
@@ -1091,6 +1133,9 @@ video {
|
|
|
1091
1133
|
.theme-brandPage .tw-items-stretch {
|
|
1092
1134
|
align-items: stretch;
|
|
1093
1135
|
}
|
|
1136
|
+
.theme-brandPage .tw-justify-normal {
|
|
1137
|
+
justify-content: normal;
|
|
1138
|
+
}
|
|
1094
1139
|
.theme-brandPage .tw-justify-start {
|
|
1095
1140
|
justify-content: flex-start;
|
|
1096
1141
|
}
|
|
@@ -1141,6 +1186,9 @@ video {
|
|
|
1141
1186
|
text-overflow: ellipsis;
|
|
1142
1187
|
white-space: nowrap;
|
|
1143
1188
|
}
|
|
1189
|
+
.theme-brandPage .tw-text-ellipsis {
|
|
1190
|
+
text-overflow: ellipsis;
|
|
1191
|
+
}
|
|
1144
1192
|
.theme-brandPage .tw-whitespace-nowrap {
|
|
1145
1193
|
white-space: nowrap;
|
|
1146
1194
|
}
|
|
@@ -1451,6 +1499,9 @@ video {
|
|
|
1451
1499
|
.theme-brandPage .tw-p-4 {
|
|
1452
1500
|
padding: 1rem;
|
|
1453
1501
|
}
|
|
1502
|
+
.theme-brandPage .tw-p-5 {
|
|
1503
|
+
padding: 1.25rem;
|
|
1504
|
+
}
|
|
1454
1505
|
.theme-brandPage .tw-p-6 {
|
|
1455
1506
|
padding: 1.5rem;
|
|
1456
1507
|
}
|
|
@@ -1465,6 +1516,10 @@ video {
|
|
|
1465
1516
|
padding-left: 0.125rem;
|
|
1466
1517
|
padding-right: 0.125rem;
|
|
1467
1518
|
}
|
|
1519
|
+
.theme-brandPage .tw-px-10 {
|
|
1520
|
+
padding-left: 2.5rem;
|
|
1521
|
+
padding-right: 2.5rem;
|
|
1522
|
+
}
|
|
1468
1523
|
.theme-brandPage .tw-px-2 {
|
|
1469
1524
|
padding-left: 0.5rem;
|
|
1470
1525
|
padding-right: 0.5rem;
|
|
@@ -1586,6 +1641,9 @@ video {
|
|
|
1586
1641
|
.theme-brandPage .tw-pt-2 {
|
|
1587
1642
|
padding-top: 0.5rem;
|
|
1588
1643
|
}
|
|
1644
|
+
.theme-brandPage .tw-pt-4 {
|
|
1645
|
+
padding-top: 1rem;
|
|
1646
|
+
}
|
|
1589
1647
|
.theme-brandPage .tw-pt-6 {
|
|
1590
1648
|
padding-top: 1.5rem;
|
|
1591
1649
|
}
|
|
@@ -2011,6 +2069,10 @@ video {
|
|
|
2011
2069
|
.theme-brandPage .md\:tw-p-8 {
|
|
2012
2070
|
padding: 2rem;
|
|
2013
2071
|
}
|
|
2072
|
+
.theme-brandPage .md\:tw-px-12 {
|
|
2073
|
+
padding-left: 3rem;
|
|
2074
|
+
padding-right: 3rem;
|
|
2075
|
+
}
|
|
2014
2076
|
.theme-brandPage .md\:tw-px-4 {
|
|
2015
2077
|
padding-left: 1rem;
|
|
2016
2078
|
padding-right: 1rem;
|
|
@@ -2051,12 +2113,18 @@ video {
|
|
|
2051
2113
|
.theme-brandPage .lg\:tw-mr-8 {
|
|
2052
2114
|
margin-right: 2rem;
|
|
2053
2115
|
}
|
|
2116
|
+
.theme-brandPage .lg\:tw-mt-0 {
|
|
2117
|
+
margin-top: 0px;
|
|
2118
|
+
}
|
|
2054
2119
|
.theme-brandPage .lg\:tw-flex {
|
|
2055
2120
|
display: flex;
|
|
2056
2121
|
}
|
|
2057
2122
|
.theme-brandPage .lg\:tw-h-auto {
|
|
2058
2123
|
height: auto;
|
|
2059
2124
|
}
|
|
2125
|
+
.theme-brandPage .lg\:tw-w-auto {
|
|
2126
|
+
width: auto;
|
|
2127
|
+
}
|
|
2060
2128
|
.theme-brandPage .lg\:tw-max-w-xl {
|
|
2061
2129
|
max-width: 36rem;
|
|
2062
2130
|
}
|
|
@@ -2066,6 +2134,9 @@ video {
|
|
|
2066
2134
|
.theme-brandPage .lg\:tw-items-center {
|
|
2067
2135
|
align-items: center;
|
|
2068
2136
|
}
|
|
2137
|
+
.theme-brandPage .lg\:tw-justify-normal {
|
|
2138
|
+
justify-content: normal;
|
|
2139
|
+
}
|
|
2069
2140
|
.theme-brandPage .lg\:tw-overflow-visible {
|
|
2070
2141
|
overflow: visible;
|
|
2071
2142
|
}
|
|
@@ -738,9 +738,6 @@ video {
|
|
|
738
738
|
.theme-crazyDomains .tw-mt-0 {
|
|
739
739
|
margin-top: 0px;
|
|
740
740
|
}
|
|
741
|
-
.theme-crazyDomains .tw-mt-0\.5 {
|
|
742
|
-
margin-top: 0.125rem;
|
|
743
|
-
}
|
|
744
741
|
.theme-crazyDomains .tw-mt-1 {
|
|
745
742
|
margin-top: 0.25rem;
|
|
746
743
|
}
|
|
@@ -753,6 +750,9 @@ video {
|
|
|
753
750
|
.theme-crazyDomains .tw-mt-4 {
|
|
754
751
|
margin-top: 1rem;
|
|
755
752
|
}
|
|
753
|
+
.theme-crazyDomains .tw-mt-6 {
|
|
754
|
+
margin-top: 1.5rem;
|
|
755
|
+
}
|
|
756
756
|
.theme-crazyDomains .tw-mt-8 {
|
|
757
757
|
margin-top: 2rem;
|
|
758
758
|
}
|
|
@@ -762,6 +762,48 @@ video {
|
|
|
762
762
|
.theme-crazyDomains .tw-box-content {
|
|
763
763
|
box-sizing: content-box;
|
|
764
764
|
}
|
|
765
|
+
.theme-crazyDomains .tw-line-clamp-1 {
|
|
766
|
+
overflow: hidden;
|
|
767
|
+
display: -webkit-box;
|
|
768
|
+
-webkit-box-orient: vertical;
|
|
769
|
+
-webkit-line-clamp: 1;
|
|
770
|
+
}
|
|
771
|
+
.theme-crazyDomains .tw-line-clamp-2 {
|
|
772
|
+
overflow: hidden;
|
|
773
|
+
display: -webkit-box;
|
|
774
|
+
-webkit-box-orient: vertical;
|
|
775
|
+
-webkit-line-clamp: 2;
|
|
776
|
+
}
|
|
777
|
+
.theme-crazyDomains .tw-line-clamp-3 {
|
|
778
|
+
overflow: hidden;
|
|
779
|
+
display: -webkit-box;
|
|
780
|
+
-webkit-box-orient: vertical;
|
|
781
|
+
-webkit-line-clamp: 3;
|
|
782
|
+
}
|
|
783
|
+
.theme-crazyDomains .tw-line-clamp-4 {
|
|
784
|
+
overflow: hidden;
|
|
785
|
+
display: -webkit-box;
|
|
786
|
+
-webkit-box-orient: vertical;
|
|
787
|
+
-webkit-line-clamp: 4;
|
|
788
|
+
}
|
|
789
|
+
.theme-crazyDomains .tw-line-clamp-5 {
|
|
790
|
+
overflow: hidden;
|
|
791
|
+
display: -webkit-box;
|
|
792
|
+
-webkit-box-orient: vertical;
|
|
793
|
+
-webkit-line-clamp: 5;
|
|
794
|
+
}
|
|
795
|
+
.theme-crazyDomains .tw-line-clamp-6 {
|
|
796
|
+
overflow: hidden;
|
|
797
|
+
display: -webkit-box;
|
|
798
|
+
-webkit-box-orient: vertical;
|
|
799
|
+
-webkit-line-clamp: 6;
|
|
800
|
+
}
|
|
801
|
+
.theme-crazyDomains .tw-line-clamp-none {
|
|
802
|
+
overflow: visible;
|
|
803
|
+
display: block;
|
|
804
|
+
-webkit-box-orient: horizontal;
|
|
805
|
+
-webkit-line-clamp: none;
|
|
806
|
+
}
|
|
765
807
|
.theme-crazyDomains .tw-block {
|
|
766
808
|
display: block;
|
|
767
809
|
}
|
|
@@ -1091,6 +1133,9 @@ video {
|
|
|
1091
1133
|
.theme-crazyDomains .tw-items-stretch {
|
|
1092
1134
|
align-items: stretch;
|
|
1093
1135
|
}
|
|
1136
|
+
.theme-crazyDomains .tw-justify-normal {
|
|
1137
|
+
justify-content: normal;
|
|
1138
|
+
}
|
|
1094
1139
|
.theme-crazyDomains .tw-justify-start {
|
|
1095
1140
|
justify-content: flex-start;
|
|
1096
1141
|
}
|
|
@@ -1141,6 +1186,9 @@ video {
|
|
|
1141
1186
|
text-overflow: ellipsis;
|
|
1142
1187
|
white-space: nowrap;
|
|
1143
1188
|
}
|
|
1189
|
+
.theme-crazyDomains .tw-text-ellipsis {
|
|
1190
|
+
text-overflow: ellipsis;
|
|
1191
|
+
}
|
|
1144
1192
|
.theme-crazyDomains .tw-whitespace-nowrap {
|
|
1145
1193
|
white-space: nowrap;
|
|
1146
1194
|
}
|
|
@@ -1603,6 +1651,9 @@ video {
|
|
|
1603
1651
|
.theme-crazyDomains .tw-p-4 {
|
|
1604
1652
|
padding: 1rem;
|
|
1605
1653
|
}
|
|
1654
|
+
.theme-crazyDomains .tw-p-5 {
|
|
1655
|
+
padding: 1.25rem;
|
|
1656
|
+
}
|
|
1606
1657
|
.theme-crazyDomains .tw-p-6 {
|
|
1607
1658
|
padding: 1.5rem;
|
|
1608
1659
|
}
|
|
@@ -1617,6 +1668,10 @@ video {
|
|
|
1617
1668
|
padding-left: 0.125rem;
|
|
1618
1669
|
padding-right: 0.125rem;
|
|
1619
1670
|
}
|
|
1671
|
+
.theme-crazyDomains .tw-px-10 {
|
|
1672
|
+
padding-left: 2.5rem;
|
|
1673
|
+
padding-right: 2.5rem;
|
|
1674
|
+
}
|
|
1620
1675
|
.theme-crazyDomains .tw-px-2 {
|
|
1621
1676
|
padding-left: 0.5rem;
|
|
1622
1677
|
padding-right: 0.5rem;
|
|
@@ -1738,6 +1793,9 @@ video {
|
|
|
1738
1793
|
.theme-crazyDomains .tw-pt-2 {
|
|
1739
1794
|
padding-top: 0.5rem;
|
|
1740
1795
|
}
|
|
1796
|
+
.theme-crazyDomains .tw-pt-4 {
|
|
1797
|
+
padding-top: 1rem;
|
|
1798
|
+
}
|
|
1741
1799
|
.theme-crazyDomains .tw-pt-6 {
|
|
1742
1800
|
padding-top: 1.5rem;
|
|
1743
1801
|
}
|
|
@@ -2327,6 +2385,10 @@ video {
|
|
|
2327
2385
|
.theme-crazyDomains .md\:tw-p-8 {
|
|
2328
2386
|
padding: 2rem;
|
|
2329
2387
|
}
|
|
2388
|
+
.theme-crazyDomains .md\:tw-px-12 {
|
|
2389
|
+
padding-left: 3rem;
|
|
2390
|
+
padding-right: 3rem;
|
|
2391
|
+
}
|
|
2330
2392
|
.theme-crazyDomains .md\:tw-px-4 {
|
|
2331
2393
|
padding-left: 1rem;
|
|
2332
2394
|
padding-right: 1rem;
|
|
@@ -2367,12 +2429,18 @@ video {
|
|
|
2367
2429
|
.theme-crazyDomains .lg\:tw-mr-8 {
|
|
2368
2430
|
margin-right: 2rem;
|
|
2369
2431
|
}
|
|
2432
|
+
.theme-crazyDomains .lg\:tw-mt-0 {
|
|
2433
|
+
margin-top: 0px;
|
|
2434
|
+
}
|
|
2370
2435
|
.theme-crazyDomains .lg\:tw-flex {
|
|
2371
2436
|
display: flex;
|
|
2372
2437
|
}
|
|
2373
2438
|
.theme-crazyDomains .lg\:tw-h-auto {
|
|
2374
2439
|
height: auto;
|
|
2375
2440
|
}
|
|
2441
|
+
.theme-crazyDomains .lg\:tw-w-auto {
|
|
2442
|
+
width: auto;
|
|
2443
|
+
}
|
|
2376
2444
|
.theme-crazyDomains .lg\:tw-max-w-xl {
|
|
2377
2445
|
max-width: 36rem;
|
|
2378
2446
|
}
|
|
@@ -2382,6 +2450,9 @@ video {
|
|
|
2382
2450
|
.theme-crazyDomains .lg\:tw-items-center {
|
|
2383
2451
|
align-items: center;
|
|
2384
2452
|
}
|
|
2453
|
+
.theme-crazyDomains .lg\:tw-justify-normal {
|
|
2454
|
+
justify-content: normal;
|
|
2455
|
+
}
|
|
2385
2456
|
.theme-crazyDomains .lg\:tw-overflow-visible {
|
|
2386
2457
|
overflow: visible;
|
|
2387
2458
|
}
|