@algorithm-shift/design-system 1.2.66 → 1.2.68

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/index.css CHANGED
@@ -59,6 +59,7 @@
59
59
  --font-weight-semibold: 600;
60
60
  --font-weight-bold: 700;
61
61
  --tracking-widest: 0.1em;
62
+ --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
62
63
  --default-transition-duration: 150ms;
63
64
  --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
64
65
  --default-font-family: var(--font-sans);
@@ -374,6 +375,9 @@
374
375
  .mt-4 {
375
376
  margin-top: calc(var(--spacing) * 4);
376
377
  }
378
+ .mt-6 {
379
+ margin-top: calc(var(--spacing) * 6);
380
+ }
377
381
  .mt-\[20px\] {
378
382
  margin-top: 20px;
379
383
  }
@@ -695,6 +699,9 @@
695
699
  .transform {
696
700
  transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
697
701
  }
702
+ .animate-pulse {
703
+ animation: var(--animate-pulse);
704
+ }
698
705
  .cursor-default {
699
706
  cursor: default;
700
707
  }
@@ -1102,6 +1109,10 @@
1102
1109
  font-size: var(--text-2xl);
1103
1110
  line-height: var(--tw-leading, var(--text-2xl--line-height));
1104
1111
  }
1112
+ .text-4xl {
1113
+ font-size: var(--text-4xl);
1114
+ line-height: var(--tw-leading, var(--text-4xl--line-height));
1115
+ }
1105
1116
  .text-base {
1106
1117
  font-size: var(--text-base);
1107
1118
  line-height: var(--tw-leading, var(--text-base--line-height));
@@ -2314,10 +2325,10 @@
2314
2325
  padding-left: 10px;
2315
2326
  }
2316
2327
  }
2317
- .md\:text-4xl {
2328
+ .md\:text-base {
2318
2329
  @media (width >= 48rem) {
2319
- font-size: var(--text-4xl);
2320
- line-height: var(--tw-leading, var(--text-4xl--line-height));
2330
+ font-size: var(--text-base);
2331
+ line-height: var(--tw-leading, var(--text-base--line-height));
2321
2332
  }
2322
2333
  }
2323
2334
  .md\:text-sm {
@@ -2825,6 +2836,11 @@
2825
2836
  @property --tw-drop-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
2826
2837
  @property --tw-drop-shadow-size { syntax: "*"; inherits: false; }
2827
2838
  @property --tw-duration { syntax: "*"; inherits: false; }
2839
+ @keyframes pulse {
2840
+ 50% {
2841
+ opacity: 0.5;
2842
+ }
2843
+ }
2828
2844
  @keyframes enter {
2829
2845
  from {
2830
2846
  opacity: var(--tw-enter-opacity,1);