@remotion/promo-pages 4.0.373 → 4.0.375
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 +805 -682
- package/dist/Users/jonathanburger/remotion/packages/promo-pages/dist/Homepage.js +805 -682
- package/dist/Users/jonathanburger/remotion/packages/promo-pages/dist/design.js +768 -479
- package/dist/Users/jonathanburger/remotion/packages/promo-pages/dist/homepage/Pricing.js +550 -446
- package/dist/Users/jonathanburger/remotion/packages/promo-pages/dist/template-modal-content.js +560 -456
- package/dist/Users/jonathanburger/remotion/packages/promo-pages/dist/templates.js +551 -447
- package/dist/design.js +768 -479
- package/dist/homepage/Pricing.js +550 -446
- package/dist/tailwind.css +9 -0
- package/dist/template-modal-content.js +560 -456
- package/dist/templates.js +551 -447
- package/package.json +12 -12
package/dist/tailwind.css
CHANGED
|
@@ -108,6 +108,9 @@
|
|
|
108
108
|
.pointer-events-none {
|
|
109
109
|
pointer-events: none;
|
|
110
110
|
}
|
|
111
|
+
.invisible {
|
|
112
|
+
visibility: hidden;
|
|
113
|
+
}
|
|
111
114
|
.visible {
|
|
112
115
|
visibility: visible;
|
|
113
116
|
}
|
|
@@ -126,6 +129,9 @@
|
|
|
126
129
|
.sticky {
|
|
127
130
|
position: sticky;
|
|
128
131
|
}
|
|
132
|
+
.inset-0 {
|
|
133
|
+
inset: calc(var(--spacing) * 0);
|
|
134
|
+
}
|
|
129
135
|
.top-0 {
|
|
130
136
|
top: calc(var(--spacing) * 0);
|
|
131
137
|
}
|
|
@@ -749,6 +755,9 @@
|
|
|
749
755
|
.bg-gray-800 {
|
|
750
756
|
background-color: var(--color-gray-800);
|
|
751
757
|
}
|
|
758
|
+
.bg-inherit {
|
|
759
|
+
background-color: inherit;
|
|
760
|
+
}
|
|
752
761
|
.bg-muted {
|
|
753
762
|
background-color: var(--subtitle);
|
|
754
763
|
}
|