@remotion/promo-pages 4.0.485 → 4.0.487

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/tailwind.css CHANGED
@@ -341,6 +341,9 @@
341
341
  .field-sizing-content {
342
342
  field-sizing: content;
343
343
  }
344
+ .aspect-square {
345
+ aspect-ratio: 1 / 1;
346
+ }
344
347
  .aspect-video {
345
348
  aspect-ratio: var(--aspect-video);
346
349
  }
@@ -439,6 +442,9 @@
439
442
  .max-h-\[110px\] {
440
443
  max-height: 110px;
441
444
  }
445
+ .max-h-full {
446
+ max-height: 100%;
447
+ }
442
448
  .min-h-\[80px\] {
443
449
  min-height: 80px;
444
450
  }
@@ -556,6 +562,9 @@
556
562
  .max-w-\[1200px\] {
557
563
  max-width: 1200px;
558
564
  }
565
+ .max-w-full {
566
+ max-width: 100%;
567
+ }
559
568
  .min-w-\(--radix-select-trigger-width\) {
560
569
  min-width: var(--radix-select-trigger-width);
561
570
  }
@@ -583,6 +592,9 @@
583
592
  .shrink-0 {
584
593
  flex-shrink: 0;
585
594
  }
595
+ .basis-0 {
596
+ flex-basis: calc(var(--spacing) * 0);
597
+ }
586
598
  .-translate-x-1\/2 {
587
599
  --tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
588
600
  translate: var(--tw-translate-x) var(--tw-translate-y);
@@ -951,9 +963,6 @@
951
963
  .py-1\.5 {
952
964
  padding-block: calc(var(--spacing) * 1.5);
953
965
  }
954
- .py-2 {
955
- padding-block: calc(var(--spacing) * 2);
956
- }
957
966
  .py-3 {
958
967
  padding-block: calc(var(--spacing) * 3);
959
968
  }
@@ -1104,6 +1113,10 @@
1104
1113
  --tw-leading: calc(var(--spacing) * 6);
1105
1114
  line-height: calc(var(--spacing) * 6);
1106
1115
  }
1116
+ .leading-\[1\.1\] {
1117
+ --tw-leading: 1.1;
1118
+ line-height: 1.1;
1119
+ }
1107
1120
  .leading-none {
1108
1121
  --tw-leading: 1;
1109
1122
  line-height: 1;
@@ -1580,6 +1593,11 @@
1580
1593
  line-height: calc(var(--spacing) * 5);
1581
1594
  }
1582
1595
  }
1596
+ .md\:mt-6 {
1597
+ @media (width >= 48rem) {
1598
+ margin-top: calc(var(--spacing) * 6);
1599
+ }
1600
+ }
1583
1601
  .md\:mr-6 {
1584
1602
  @media (width >= 48rem) {
1585
1603
  margin-right: calc(var(--spacing) * 6);