@remotion/promo-pages 4.0.463 → 4.0.464
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/Homepage.js +901 -777
- package/dist/design.js +745 -661
- package/dist/experts/experts-data.js +16 -5
- package/dist/experts.js +646 -562
- package/dist/homepage/Pricing.js +734 -650
- package/dist/prompts/PromptsGallery.js +743 -659
- package/dist/prompts/PromptsShow.css +2578 -0
- package/dist/prompts/PromptsShow.js +724 -640
- package/dist/prompts/PromptsSubmit.js +731 -647
- package/dist/tailwind.css +6 -4
- package/dist/team.js +730 -646
- package/dist/template-modal-content.css +35 -0
- package/dist/template-modal-content.js +744 -660
- package/dist/templates.js +731 -646
- package/package.json +13 -13
package/dist/tailwind.css
CHANGED
|
@@ -995,10 +995,6 @@
|
|
|
995
995
|
font-size: var(--text-4xl);
|
|
996
996
|
line-height: var(--tw-leading, var(--text-4xl--line-height));
|
|
997
997
|
}
|
|
998
|
-
.text-5xl {
|
|
999
|
-
font-size: var(--text-5xl);
|
|
1000
|
-
line-height: var(--tw-leading, var(--text-5xl--line-height));
|
|
1001
|
-
}
|
|
1002
998
|
.text-base {
|
|
1003
999
|
font-size: var(--text-base);
|
|
1004
1000
|
line-height: var(--tw-leading, var(--text-base--line-height));
|
|
@@ -1478,6 +1474,12 @@
|
|
|
1478
1474
|
gap: calc(var(--spacing) * 4);
|
|
1479
1475
|
}
|
|
1480
1476
|
}
|
|
1477
|
+
.sm\:text-5xl {
|
|
1478
|
+
@media (width >= 40rem) {
|
|
1479
|
+
font-size: var(--text-5xl);
|
|
1480
|
+
line-height: var(--tw-leading, var(--text-5xl--line-height));
|
|
1481
|
+
}
|
|
1482
|
+
}
|
|
1481
1483
|
.md\:mr-6 {
|
|
1482
1484
|
@media (width >= 48rem) {
|
|
1483
1485
|
margin-right: calc(var(--spacing) * 6);
|