uibee 2.17.5 → 3.0.0

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.
Files changed (181) hide show
  1. package/README.md +34 -0
  2. package/dist/icons-lZYQ6Vlr.js +125 -0
  3. package/dist/src/components/index.d.ts +706 -30
  4. package/dist/src/components/index.js +3243 -44
  5. package/dist/src/hooks/index.d.ts +15 -3
  6. package/dist/src/hooks/index.js +44 -3
  7. package/dist/src/icons/index.d.ts +420 -0
  8. package/dist/src/icons/index.js +3 -0
  9. package/dist/src/styles/index.d.ts +1 -1
  10. package/dist/src/styles/index.js +2 -1
  11. package/dist/src/utils/index.d.ts +38 -5
  12. package/dist/src/utils/index.js +125 -6
  13. package/dist/{src/globals.css → style.css} +890 -678
  14. package/dist/useClickOutside-Cmp-RsP3.js +13 -0
  15. package/index.d.ts +0 -1
  16. package/package.json +22 -23
  17. package/src/components/alert/alert.tsx +20 -18
  18. package/src/components/buttons/button.tsx +28 -35
  19. package/src/components/confirm/confirmPopup.tsx +15 -17
  20. package/src/components/container/accordion.tsx +54 -0
  21. package/src/components/container/glassCard.tsx +14 -0
  22. package/src/components/container/iconBubble.tsx +30 -0
  23. package/src/components/container/leftBarPanel.tsx +15 -0
  24. package/src/components/container/pulseDot.tsx +31 -0
  25. package/src/components/container/statCard.tsx +24 -0
  26. package/src/components/container/tabs.tsx +64 -0
  27. package/src/components/footer/footer.tsx +124 -0
  28. package/src/components/footer/loginContent.tsx +70 -0
  29. package/src/components/index.ts +15 -0
  30. package/src/components/inputs/checkbox.tsx +4 -4
  31. package/src/components/inputs/input.tsx +11 -13
  32. package/src/components/inputs/multiSelect.tsx +144 -0
  33. package/src/components/inputs/radio.tsx +4 -4
  34. package/src/components/inputs/range.tsx +6 -5
  35. package/src/components/inputs/searchInput.tsx +1 -1
  36. package/src/components/inputs/select.tsx +19 -18
  37. package/src/components/inputs/shared/colorPickerPopup.tsx +5 -5
  38. package/src/components/inputs/shared/dateTimePickerPopup.tsx +9 -9
  39. package/src/components/inputs/shared/inputError.tsx +1 -1
  40. package/src/components/inputs/switch.tsx +7 -7
  41. package/src/components/inputs/tagInput.tsx +6 -7
  42. package/src/components/inputs/textarea.tsx +8 -10
  43. package/src/components/inputs/toggle.tsx +6 -6
  44. package/src/components/table/body.tsx +6 -6
  45. package/src/components/table/format.ts +1 -1
  46. package/src/components/table/header.tsx +1 -1
  47. package/src/components/table/pagination.tsx +17 -31
  48. package/src/components/table/table.tsx +2 -2
  49. package/src/components/version/version.tsx +1 -1
  50. package/src/components/vulnerability/constants.ts +6 -6
  51. package/src/components/vulnerability/severityPill.tsx +6 -7
  52. package/src/hooks/index.ts +1 -0
  53. package/src/hooks/useClickOutside.ts +5 -22
  54. package/src/icons/icons.tsx +431 -0
  55. package/src/icons/index.ts +2 -0
  56. package/src/index.ts +0 -1
  57. package/src/types/hooks.d.ts +8 -2
  58. package/src/utils/index.ts +1 -1
  59. package/src/utils/logoConsoleOutput/logoConsoleOutput.ts +31 -0
  60. package/tsconfig.json +3 -2
  61. package/tsdown.config.ts +26 -0
  62. package/Readme.md +0 -29
  63. package/bun.lock +0 -662
  64. package/dist/src/components/alert/alert.d.ts +0 -8
  65. package/dist/src/components/alert/alert.js +0 -15
  66. package/dist/src/components/buttons/button.d.ts +0 -13
  67. package/dist/src/components/buttons/button.js +0 -30
  68. package/dist/src/components/confirm/confirmPopup.d.ts +0 -12
  69. package/dist/src/components/confirm/confirmPopup.js +0 -18
  70. package/dist/src/components/container/highlight.d.ts +0 -4
  71. package/dist/src/components/container/highlight.js +0 -4
  72. package/dist/src/components/container/page.d.ts +0 -8
  73. package/dist/src/components/container/page.js +0 -4
  74. package/dist/src/components/inputs/checkbox.d.ts +0 -17
  75. package/dist/src/components/inputs/checkbox.js +0 -37
  76. package/dist/src/components/inputs/input.d.ts +0 -12
  77. package/dist/src/components/inputs/input.js +0 -124
  78. package/dist/src/components/inputs/radio.d.ts +0 -17
  79. package/dist/src/components/inputs/radio.js +0 -27
  80. package/dist/src/components/inputs/range.d.ts +0 -11
  81. package/dist/src/components/inputs/range.js +0 -22
  82. package/dist/src/components/inputs/searchInput.d.ts +0 -6
  83. package/dist/src/components/inputs/searchInput.js +0 -42
  84. package/dist/src/components/inputs/select.d.ts +0 -23
  85. package/dist/src/components/inputs/select.js +0 -70
  86. package/dist/src/components/inputs/shared/colorPickerPopup.d.ts +0 -8
  87. package/dist/src/components/inputs/shared/colorPickerPopup.js +0 -191
  88. package/dist/src/components/inputs/shared/dateTimePickerPopup.d.ts +0 -9
  89. package/dist/src/components/inputs/shared/dateTimePickerPopup.js +0 -128
  90. package/dist/src/components/inputs/shared/fieldWrapper.d.ts +0 -14
  91. package/dist/src/components/inputs/shared/fieldWrapper.js +0 -8
  92. package/dist/src/components/inputs/shared/index.d.ts +0 -5
  93. package/dist/src/components/inputs/shared/index.js +0 -5
  94. package/dist/src/components/inputs/shared/inputError.d.ts +0 -6
  95. package/dist/src/components/inputs/shared/inputError.js +0 -6
  96. package/dist/src/components/inputs/shared/inputInfo.d.ts +0 -5
  97. package/dist/src/components/inputs/shared/inputInfo.js +0 -5
  98. package/dist/src/components/inputs/shared/inputLabel.d.ts +0 -9
  99. package/dist/src/components/inputs/shared/inputLabel.js +0 -4
  100. package/dist/src/components/inputs/switch.d.ts +0 -11
  101. package/dist/src/components/inputs/switch.js +0 -14
  102. package/dist/src/components/inputs/tagInput.d.ts +0 -15
  103. package/dist/src/components/inputs/tagInput.js +0 -40
  104. package/dist/src/components/inputs/textarea.d.ts +0 -11
  105. package/dist/src/components/inputs/textarea.js +0 -36
  106. package/dist/src/components/inputs/toggle.d.ts +0 -14
  107. package/dist/src/components/inputs/toggle.js +0 -12
  108. package/dist/src/components/login/loginPage.d.ts +0 -2
  109. package/dist/src/components/login/loginPage.js +0 -18
  110. package/dist/src/components/logo/logo.d.ts +0 -5
  111. package/dist/src/components/logo/logo.js +0 -6
  112. package/dist/src/components/logo/logoSmall.d.ts +0 -1
  113. package/dist/src/components/logo/logoSmall.js +0 -6
  114. package/dist/src/components/markdownrender/markdownRender.d.ts +0 -7
  115. package/dist/src/components/markdownrender/markdownRender.js +0 -26
  116. package/dist/src/components/navbar/bubble.d.ts +0 -14
  117. package/dist/src/components/navbar/bubble.js +0 -8
  118. package/dist/src/components/navbar/navbar.d.ts +0 -34
  119. package/dist/src/components/navbar/navbar.js +0 -36
  120. package/dist/src/components/navbar/navbarDropdown.d.ts +0 -7
  121. package/dist/src/components/navbar/navbarDropdown.js +0 -19
  122. package/dist/src/components/navbar/navbarItem.d.ts +0 -11
  123. package/dist/src/components/navbar/navbarItem.js +0 -12
  124. package/dist/src/components/table/body.d.ts +0 -15
  125. package/dist/src/components/table/body.js +0 -116
  126. package/dist/src/components/table/format.d.ts +0 -1
  127. package/dist/src/components/table/format.js +0 -27
  128. package/dist/src/components/table/header.d.ts +0 -8
  129. package/dist/src/components/table/header.js +0 -47
  130. package/dist/src/components/table/menu.d.ts +0 -17
  131. package/dist/src/components/table/menu.js +0 -30
  132. package/dist/src/components/table/pagination.d.ts +0 -6
  133. package/dist/src/components/table/pagination.js +0 -86
  134. package/dist/src/components/table/table.d.ts +0 -14
  135. package/dist/src/components/table/table.js +0 -14
  136. package/dist/src/components/toast/toastItem.d.ts +0 -2
  137. package/dist/src/components/toast/toastItem.js +0 -38
  138. package/dist/src/components/toast/toaster.d.ts +0 -9
  139. package/dist/src/components/toast/toaster.js +0 -86
  140. package/dist/src/components/toggle/language.d.ts +0 -4
  141. package/dist/src/components/toggle/language.js +0 -29
  142. package/dist/src/components/toggle/theme.d.ts +0 -3
  143. package/dist/src/components/toggle/theme.js +0 -30
  144. package/dist/src/components/version/version.d.ts +0 -7
  145. package/dist/src/components/version/version.js +0 -12
  146. package/dist/src/components/vulnerability/constants.d.ts +0 -4
  147. package/dist/src/components/vulnerability/constants.js +0 -14
  148. package/dist/src/components/vulnerability/severityPill.d.ts +0 -8
  149. package/dist/src/components/vulnerability/severityPill.js +0 -8
  150. package/dist/src/hooks/useClickOutside.d.ts +0 -2
  151. package/dist/src/hooks/useClickOutside.js +0 -27
  152. package/dist/src/hooks/useDarkMode.d.ts +0 -1
  153. package/dist/src/hooks/useDarkMode.js +0 -17
  154. package/dist/src/hooks/useVisibility.d.ts +0 -4
  155. package/dist/src/hooks/useVisibility.js +0 -23
  156. package/dist/src/index.d.ts +0 -5
  157. package/dist/src/index.js +0 -5
  158. package/dist/src/scripts/buildCss.d.ts +0 -1
  159. package/dist/src/scripts/buildCss.js +0 -22
  160. package/dist/src/scripts/index.d.ts +0 -1
  161. package/dist/src/scripts/index.js +0 -1
  162. package/dist/src/scripts/rewriteAlias.d.ts +0 -1
  163. package/dist/src/scripts/rewriteAlias.js +0 -31
  164. package/dist/src/utils/LogoConsoleOutput/LogoConsoleOutput.d.ts +0 -1
  165. package/dist/src/utils/LogoConsoleOutput/LogoConsoleOutput.js +0 -44
  166. package/dist/src/utils/auth/callback.d.ts +0 -2
  167. package/dist/src/utils/auth/callback.js +0 -63
  168. package/dist/src/utils/auth/getDomain.d.ts +0 -2
  169. package/dist/src/utils/auth/getDomain.js +0 -6
  170. package/dist/src/utils/auth/login.d.ts +0 -3
  171. package/dist/src/utils/auth/login.js +0 -14
  172. package/dist/src/utils/auth/logout.d.ts +0 -3
  173. package/dist/src/utils/auth/logout.js +0 -18
  174. package/dist/src/utils/auth/token.d.ts +0 -3
  175. package/dist/src/utils/auth/token.js +0 -33
  176. package/dist/tailwind.config.d.ts +0 -3
  177. package/dist/tailwind.config.js +0 -7
  178. package/src/scripts/buildCss.ts +0 -25
  179. package/src/scripts/index.ts +0 -1
  180. package/src/scripts/rewriteAlias.ts +0 -39
  181. package/src/utils/LogoConsoleOutput/LogoConsoleOutput.ts +0 -61
@@ -1,4 +1,4 @@
1
- /*! tailwindcss v4.2.2 | MIT License | https://tailwindcss.com */
1
+ /*! tailwindcss v4.3.1 | MIT License | https://tailwindcss.com */
2
2
  @layer properties;
3
3
  @layer theme, base, components, utilities;
4
4
  @layer theme {
@@ -8,34 +8,33 @@
8
8
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
9
9
  "Courier New", monospace;
10
10
  --color-red-200: oklch(88.5% 0.062 18.334);
11
+ --color-red-300: oklch(80.8% 0.114 19.571);
11
12
  --color-red-400: oklch(70.4% 0.191 22.216);
12
13
  --color-red-500: oklch(63.7% 0.237 25.331);
13
14
  --color-red-600: oklch(57.7% 0.245 27.325);
14
- --color-red-700: oklch(50.5% 0.213 27.518);
15
- --color-red-900: oklch(39.6% 0.141 25.723);
16
- --color-orange-200: oklch(90.1% 0.076 70.697);
17
- --color-orange-400: oklch(75% 0.183 55.934);
18
15
  --color-orange-500: oklch(70.5% 0.213 47.604);
19
- --color-amber-200: oklch(92.4% 0.12 95.746);
20
16
  --color-amber-400: oklch(82.8% 0.189 84.429);
21
17
  --color-amber-500: oklch(76.9% 0.188 70.08);
22
18
  --color-yellow-400: oklch(85.2% 0.199 91.936);
23
19
  --color-yellow-500: oklch(79.5% 0.184 86.047);
24
- --color-yellow-600: oklch(68.1% 0.162 75.834);
25
20
  --color-green-400: oklch(79.2% 0.209 151.711);
26
21
  --color-green-500: oklch(72.3% 0.219 149.579);
27
22
  --color-green-600: oklch(62.7% 0.194 149.214);
28
- --color-sky-200: oklch(90.1% 0.058 230.902);
23
+ --color-emerald-400: oklch(76.5% 0.177 163.223);
24
+ --color-emerald-500: oklch(69.6% 0.17 162.48);
29
25
  --color-sky-400: oklch(74.6% 0.16 232.661);
30
26
  --color-sky-500: oklch(68.5% 0.169 237.323);
31
27
  --color-blue-400: oklch(70.7% 0.165 254.624);
32
28
  --color-blue-500: oklch(62.3% 0.214 259.815);
33
29
  --color-blue-600: oklch(54.6% 0.245 262.881);
30
+ --color-violet-400: oklch(70.2% 0.183 293.541);
31
+ --color-violet-500: oklch(60.6% 0.25 292.717);
32
+ --color-rose-400: oklch(71.2% 0.194 13.428);
33
+ --color-rose-500: oklch(64.5% 0.246 16.439);
34
34
  --color-gray-200: oklch(92.8% 0.006 264.531);
35
35
  --color-gray-300: oklch(87.2% 0.01 258.338);
36
36
  --color-gray-400: oklch(70.7% 0.022 261.325);
37
37
  --color-gray-500: oklch(55.1% 0.027 264.364);
38
- --color-gray-900: oklch(21% 0.034 264.665);
39
38
  --color-black: #000;
40
39
  --color-white: #fff;
41
40
  --spacing: 0.25rem;
@@ -64,6 +63,7 @@
64
63
  --font-weight-extrabold: 800;
65
64
  --tracking-tight: -0.025em;
66
65
  --tracking-wider: 0.05em;
66
+ --tracking-widest: 0.1em;
67
67
  --leading-snug: 1.375;
68
68
  --leading-relaxed: 1.625;
69
69
  --radius-xs: 0.125rem;
@@ -73,6 +73,7 @@
73
73
  --radius-xl: 0.75rem;
74
74
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
75
75
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
76
+ --animate-ping: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
76
77
  --blur-sm: 8px;
77
78
  --blur-xl: 24px;
78
79
  --default-transition-duration: 150ms;
@@ -95,13 +96,18 @@
95
96
  }
96
97
  }
97
98
  @layer base {
98
- *, ::after, ::before, ::backdrop, ::file-selector-button {
99
+ *,
100
+ ::after,
101
+ ::before,
102
+ ::backdrop,
103
+ ::file-selector-button {
99
104
  box-sizing: border-box;
100
105
  margin: 0;
101
106
  padding: 0;
102
107
  border: 0 solid;
103
108
  }
104
- html, :host {
109
+ html,
110
+ :host {
105
111
  line-height: 1.5;
106
112
  -webkit-text-size-adjust: 100%;
107
113
  tab-size: 4;
@@ -119,7 +125,12 @@
119
125
  -webkit-text-decoration: underline dotted;
120
126
  text-decoration: underline dotted;
121
127
  }
122
- h1, h2, h3, h4, h5, h6 {
128
+ h1,
129
+ h2,
130
+ h3,
131
+ h4,
132
+ h5,
133
+ h6 {
123
134
  font-size: inherit;
124
135
  font-weight: inherit;
125
136
  }
@@ -128,10 +139,14 @@
128
139
  -webkit-text-decoration: inherit;
129
140
  text-decoration: inherit;
130
141
  }
131
- b, strong {
142
+ b,
143
+ strong {
132
144
  font-weight: bolder;
133
145
  }
134
- code, kbd, samp, pre {
146
+ code,
147
+ kbd,
148
+ samp,
149
+ pre {
135
150
  font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
136
151
  font-feature-settings: var(--default-mono-font-feature-settings, normal);
137
152
  font-variation-settings: var(--default-mono-font-variation-settings, normal);
@@ -140,7 +155,8 @@
140
155
  small {
141
156
  font-size: 80%;
142
157
  }
143
- sub, sup {
158
+ sub,
159
+ sup {
144
160
  font-size: 75%;
145
161
  line-height: 0;
146
162
  position: relative;
@@ -166,18 +182,33 @@
166
182
  summary {
167
183
  display: list-item;
168
184
  }
169
- ol, ul, menu {
185
+ ol,
186
+ ul,
187
+ menu {
170
188
  list-style: none;
171
189
  }
172
- img, svg, video, canvas, audio, iframe, embed, object {
190
+ img,
191
+ svg,
192
+ video,
193
+ canvas,
194
+ audio,
195
+ iframe,
196
+ embed,
197
+ object {
173
198
  display: block;
174
199
  vertical-align: middle;
175
200
  }
176
- img, video {
201
+ img,
202
+ video {
177
203
  max-width: 100%;
178
204
  height: auto;
179
205
  }
180
- button, input, select, optgroup, textarea, ::file-selector-button {
206
+ button,
207
+ input,
208
+ select,
209
+ optgroup,
210
+ textarea,
211
+ ::file-selector-button {
181
212
  font: inherit;
182
213
  font-feature-settings: inherit;
183
214
  font-variation-settings: inherit;
@@ -199,7 +230,8 @@
199
230
  ::placeholder {
200
231
  opacity: 1;
201
232
  }
202
- @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
233
+ @supports (not (-webkit-appearance: -apple-pay-button)) or
234
+ (contain-intrinsic-size: 1px) {
203
235
  ::placeholder {
204
236
  color: currentcolor;
205
237
  @supports (color: color-mix(in lab, red, red)) {
@@ -223,7 +255,15 @@
223
255
  ::-webkit-datetime-edit-fields-wrapper {
224
256
  padding: 0;
225
257
  }
226
- ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
258
+ ::-webkit-datetime-edit,
259
+ ::-webkit-datetime-edit-year-field,
260
+ ::-webkit-datetime-edit-month-field,
261
+ ::-webkit-datetime-edit-day-field,
262
+ ::-webkit-datetime-edit-hour-field,
263
+ ::-webkit-datetime-edit-minute-field,
264
+ ::-webkit-datetime-edit-second-field,
265
+ ::-webkit-datetime-edit-millisecond-field,
266
+ ::-webkit-datetime-edit-meridiem-field {
227
267
  padding-block: 0;
228
268
  }
229
269
  ::-webkit-calendar-picker-indicator {
@@ -232,10 +272,13 @@
232
272
  :-moz-ui-invalid {
233
273
  box-shadow: none;
234
274
  }
235
- button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
275
+ button,
276
+ input:where([type="button"], [type="reset"], [type="submit"]),
277
+ ::file-selector-button {
236
278
  appearance: button;
237
279
  }
238
- ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
280
+ ::-webkit-inner-spin-button,
281
+ ::-webkit-outer-spin-button {
239
282
  height: auto;
240
283
  }
241
284
  [hidden]:where(:not([hidden="until-found"])) {
@@ -322,16 +365,10 @@
322
365
  position: sticky;
323
366
  }
324
367
  .inset-0 {
325
- inset: calc(var(--spacing) * 0);
368
+ inset: 0;
326
369
  }
327
370
  .inset-y-0 {
328
- inset-block: calc(var(--spacing) * 0);
329
- }
330
- .start {
331
- inset-inline-start: var(--spacing);
332
- }
333
- .end {
334
- inset-inline-end: var(--spacing);
371
+ inset-block: 0;
335
372
  }
336
373
  .anchor-popup {
337
374
  top: 100%;
@@ -345,7 +382,7 @@
345
382
  top: calc(var(--spacing) * -3);
346
383
  }
347
384
  .top-0 {
348
- top: calc(var(--spacing) * 0);
385
+ top: 0;
349
386
  }
350
387
  .top-1\/2 {
351
388
  top: calc(1 / 2 * 100%);
@@ -369,7 +406,7 @@
369
406
  top: calc(var(--spacing) * 16);
370
407
  }
371
408
  .right-0 {
372
- right: calc(var(--spacing) * 0);
409
+ right: 0;
373
410
  }
374
411
  .right-2 {
375
412
  right: calc(var(--spacing) * 2);
@@ -378,13 +415,13 @@
378
415
  right: calc(var(--spacing) * 4);
379
416
  }
380
417
  .bottom-0 {
381
- bottom: calc(var(--spacing) * 0);
418
+ bottom: 0;
382
419
  }
383
420
  .bottom-4 {
384
421
  bottom: calc(var(--spacing) * 4);
385
422
  }
386
423
  .left-0 {
387
- left: calc(var(--spacing) * 0);
424
+ left: 0;
388
425
  }
389
426
  .left-1\/2 {
390
427
  left: calc(1 / 2 * 100%);
@@ -425,93 +462,93 @@
425
462
  .prose {
426
463
  color: var(--tw-prose-body);
427
464
  max-width: 65ch;
428
- :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
465
+ :where(p):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
429
466
  margin-top: 1.25em;
430
467
  margin-bottom: 1.25em;
431
468
  }
432
- :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
469
+ :where([class~="lead"]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
433
470
  color: var(--tw-prose-lead);
434
471
  font-size: 1.25em;
435
472
  line-height: 1.6;
436
473
  margin-top: 1.2em;
437
474
  margin-bottom: 1.2em;
438
475
  }
439
- :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
476
+ :where(a):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
440
477
  color: var(--tw-prose-links);
441
478
  text-decoration: underline;
442
479
  font-weight: 500;
443
480
  }
444
- :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
481
+ :where(strong):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
445
482
  color: var(--tw-prose-bold);
446
483
  font-weight: 600;
447
484
  }
448
- :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
485
+ :where(a strong):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
449
486
  color: inherit;
450
487
  }
451
- :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
488
+ :where(blockquote strong):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
452
489
  color: inherit;
453
490
  }
454
- :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
491
+ :where(thead th strong):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
455
492
  color: inherit;
456
493
  }
457
- :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
494
+ :where(ol):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
458
495
  list-style-type: decimal;
459
496
  margin-top: 1.25em;
460
497
  margin-bottom: 1.25em;
461
498
  padding-inline-start: 1.625em;
462
499
  }
463
- :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
500
+ :where(ol[type="A"]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
464
501
  list-style-type: upper-alpha;
465
502
  }
466
- :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
503
+ :where(ol[type="a"]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
467
504
  list-style-type: lower-alpha;
468
505
  }
469
- :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
506
+ :where(ol[type="A" s]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
470
507
  list-style-type: upper-alpha;
471
508
  }
472
- :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
509
+ :where(ol[type="a" s]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
473
510
  list-style-type: lower-alpha;
474
511
  }
475
- :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
512
+ :where(ol[type="I"]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
476
513
  list-style-type: upper-roman;
477
514
  }
478
- :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
515
+ :where(ol[type="i"]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
479
516
  list-style-type: lower-roman;
480
517
  }
481
- :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
518
+ :where(ol[type="I" s]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
482
519
  list-style-type: upper-roman;
483
520
  }
484
- :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
521
+ :where(ol[type="i" s]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
485
522
  list-style-type: lower-roman;
486
523
  }
487
- :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
524
+ :where(ol[type="1"]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
488
525
  list-style-type: decimal;
489
526
  }
490
- :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
527
+ :where(ul):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
491
528
  list-style-type: disc;
492
529
  margin-top: 1.25em;
493
530
  margin-bottom: 1.25em;
494
531
  padding-inline-start: 1.625em;
495
532
  }
496
- :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
533
+ :where(ol > li):not(:where([class~="not-prose"], [class~="not-prose"] *))::marker {
497
534
  font-weight: 400;
498
535
  color: var(--tw-prose-counters);
499
536
  }
500
- :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
537
+ :where(ul > li):not(:where([class~="not-prose"], [class~="not-prose"] *))::marker {
501
538
  color: var(--tw-prose-bullets);
502
539
  }
503
- :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
540
+ :where(dt):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
504
541
  color: var(--tw-prose-headings);
505
542
  font-weight: 600;
506
543
  margin-top: 1.25em;
507
544
  }
508
- :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
545
+ :where(hr):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
509
546
  border-color: var(--tw-prose-hr);
510
547
  border-top-width: 1px;
511
548
  margin-top: 3em;
512
549
  margin-bottom: 3em;
513
550
  }
514
- :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
551
+ :where(blockquote):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
515
552
  font-weight: 500;
516
553
  font-style: italic;
517
554
  color: var(--tw-prose-quotes);
@@ -522,13 +559,13 @@
522
559
  margin-bottom: 1.6em;
523
560
  padding-inline-start: 1em;
524
561
  }
525
- :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
562
+ :where(blockquote p:first-of-type):not(:where([class~="not-prose"], [class~="not-prose"] *))::before {
526
563
  content: open-quote;
527
564
  }
528
- :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
565
+ :where(blockquote p:last-of-type):not(:where([class~="not-prose"], [class~="not-prose"] *))::after {
529
566
  content: close-quote;
530
567
  }
531
- :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
568
+ :where(h1):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
532
569
  color: var(--tw-prose-headings);
533
570
  font-weight: 800;
534
571
  font-size: 2.25em;
@@ -536,11 +573,11 @@
536
573
  margin-bottom: 0.8888889em;
537
574
  line-height: 1.1111111;
538
575
  }
539
- :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
576
+ :where(h1 strong):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
540
577
  font-weight: 900;
541
578
  color: inherit;
542
579
  }
543
- :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
580
+ :where(h2):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
544
581
  color: var(--tw-prose-headings);
545
582
  font-weight: 700;
546
583
  font-size: 1.5em;
@@ -548,11 +585,11 @@
548
585
  margin-bottom: 1em;
549
586
  line-height: 1.3333333;
550
587
  }
551
- :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
588
+ :where(h2 strong):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
552
589
  font-weight: 800;
553
590
  color: inherit;
554
591
  }
555
- :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
592
+ :where(h3):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
556
593
  color: var(--tw-prose-headings);
557
594
  font-weight: 600;
558
595
  font-size: 1.25em;
@@ -560,35 +597,35 @@
560
597
  margin-bottom: 0.6em;
561
598
  line-height: 1.6;
562
599
  }
563
- :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
600
+ :where(h3 strong):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
564
601
  font-weight: 700;
565
602
  color: inherit;
566
603
  }
567
- :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
604
+ :where(h4):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
568
605
  color: var(--tw-prose-headings);
569
606
  font-weight: 600;
570
607
  margin-top: 1.5em;
571
608
  margin-bottom: 0.5em;
572
609
  line-height: 1.5;
573
610
  }
574
- :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
611
+ :where(h4 strong):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
575
612
  font-weight: 700;
576
613
  color: inherit;
577
614
  }
578
- :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
615
+ :where(img):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
579
616
  margin-top: 2em;
580
617
  margin-bottom: 2em;
581
618
  }
582
- :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
619
+ :where(picture):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
583
620
  display: block;
584
621
  margin-top: 2em;
585
622
  margin-bottom: 2em;
586
623
  }
587
- :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
624
+ :where(video):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
588
625
  margin-top: 2em;
589
626
  margin-bottom: 2em;
590
627
  }
591
- :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
628
+ :where(kbd):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
592
629
  font-weight: 500;
593
630
  font-family: inherit;
594
631
  color: var(--tw-prose-kbd);
@@ -600,41 +637,41 @@
600
637
  padding-bottom: 0.1875em;
601
638
  padding-inline-start: 0.375em;
602
639
  }
603
- :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
640
+ :where(code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
604
641
  color: var(--tw-prose-code);
605
642
  font-weight: 600;
606
643
  font-size: 0.875em;
607
644
  }
608
- :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
645
+ :where(code):not(:where([class~="not-prose"], [class~="not-prose"] *))::before {
609
646
  content: "`";
610
647
  }
611
- :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
648
+ :where(code):not(:where([class~="not-prose"], [class~="not-prose"] *))::after {
612
649
  content: "`";
613
650
  }
614
- :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
651
+ :where(a code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
615
652
  color: inherit;
616
653
  }
617
- :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
654
+ :where(h1 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
618
655
  color: inherit;
619
656
  }
620
- :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
657
+ :where(h2 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
621
658
  color: inherit;
622
659
  font-size: 0.875em;
623
660
  }
624
- :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
661
+ :where(h3 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
625
662
  color: inherit;
626
663
  font-size: 0.9em;
627
664
  }
628
- :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
665
+ :where(h4 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
629
666
  color: inherit;
630
667
  }
631
- :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
668
+ :where(blockquote code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
632
669
  color: inherit;
633
670
  }
634
- :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
671
+ :where(thead th code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
635
672
  color: inherit;
636
673
  }
637
- :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
674
+ :where(pre):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
638
675
  color: var(--tw-prose-pre-code);
639
676
  background-color: var(--tw-prose-pre-bg);
640
677
  overflow-x: auto;
@@ -649,7 +686,7 @@
649
686
  padding-bottom: 0.8571429em;
650
687
  padding-inline-start: 1.1428571em;
651
688
  }
652
- :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
689
+ :where(pre code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
653
690
  background-color: transparent;
654
691
  border-width: 0;
655
692
  border-radius: 0;
@@ -660,13 +697,13 @@
660
697
  font-family: inherit;
661
698
  line-height: inherit;
662
699
  }
663
- :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
700
+ :where(pre code):not(:where([class~="not-prose"], [class~="not-prose"] *))::before {
664
701
  content: none;
665
702
  }
666
- :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
703
+ :where(pre code):not(:where([class~="not-prose"], [class~="not-prose"] *))::after {
667
704
  content: none;
668
705
  }
669
- :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
706
+ :where(table):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
670
707
  width: 100%;
671
708
  table-layout: auto;
672
709
  margin-top: 2em;
@@ -674,11 +711,11 @@
674
711
  font-size: 0.875em;
675
712
  line-height: 1.7142857;
676
713
  }
677
- :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
714
+ :where(thead):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
678
715
  border-bottom-width: 1px;
679
716
  border-bottom-color: var(--tw-prose-th-borders);
680
717
  }
681
- :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
718
+ :where(thead th):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
682
719
  color: var(--tw-prose-headings);
683
720
  font-weight: 600;
684
721
  vertical-align: bottom;
@@ -686,31 +723,31 @@
686
723
  padding-bottom: 0.5714286em;
687
724
  padding-inline-start: 0.5714286em;
688
725
  }
689
- :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
726
+ :where(tbody tr):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
690
727
  border-bottom-width: 1px;
691
728
  border-bottom-color: var(--tw-prose-td-borders);
692
729
  }
693
- :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
730
+ :where(tbody tr:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
694
731
  border-bottom-width: 0;
695
732
  }
696
- :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
733
+ :where(tbody td):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
697
734
  vertical-align: baseline;
698
735
  }
699
- :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
736
+ :where(tfoot):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
700
737
  border-top-width: 1px;
701
738
  border-top-color: var(--tw-prose-th-borders);
702
739
  }
703
- :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
740
+ :where(tfoot td):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
704
741
  vertical-align: top;
705
742
  }
706
- :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
743
+ :where(th, td):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
707
744
  text-align: start;
708
745
  }
709
- :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
746
+ :where(figure > *):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
710
747
  margin-top: 0;
711
748
  margin-bottom: 0;
712
749
  }
713
- :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
750
+ :where(figcaption):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
714
751
  color: var(--tw-prose-captions);
715
752
  font-size: 0.875em;
716
753
  line-height: 1.4285714;
@@ -754,86 +791,86 @@
754
791
  --tw-prose-invert-td-borders: oklch(37.3% 0.034 259.733);
755
792
  font-size: 1rem;
756
793
  line-height: 1.75;
757
- :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
794
+ :where(picture > img):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
758
795
  margin-top: 0;
759
796
  margin-bottom: 0;
760
797
  }
761
- :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
798
+ :where(li):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
762
799
  margin-top: 0.5em;
763
800
  margin-bottom: 0.5em;
764
801
  }
765
- :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
802
+ :where(ol > li):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
766
803
  padding-inline-start: 0.375em;
767
804
  }
768
- :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
805
+ :where(ul > li):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
769
806
  padding-inline-start: 0.375em;
770
807
  }
771
- :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
808
+ :where(.prose > ul > li p):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
772
809
  margin-top: 0.75em;
773
810
  margin-bottom: 0.75em;
774
811
  }
775
- :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
812
+ :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
776
813
  margin-top: 1.25em;
777
814
  }
778
- :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
815
+ :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
779
816
  margin-bottom: 1.25em;
780
817
  }
781
- :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
818
+ :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
782
819
  margin-top: 1.25em;
783
820
  }
784
- :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
821
+ :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
785
822
  margin-bottom: 1.25em;
786
823
  }
787
- :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
824
+ :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
788
825
  margin-top: 0.75em;
789
826
  margin-bottom: 0.75em;
790
827
  }
791
- :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
828
+ :where(dl):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
792
829
  margin-top: 1.25em;
793
830
  margin-bottom: 1.25em;
794
831
  }
795
- :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
832
+ :where(dd):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
796
833
  margin-top: 0.5em;
797
834
  padding-inline-start: 1.625em;
798
835
  }
799
- :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
836
+ :where(hr + *):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
800
837
  margin-top: 0;
801
838
  }
802
- :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
839
+ :where(h2 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
803
840
  margin-top: 0;
804
841
  }
805
- :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
842
+ :where(h3 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
806
843
  margin-top: 0;
807
844
  }
808
- :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
845
+ :where(h4 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
809
846
  margin-top: 0;
810
847
  }
811
- :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
848
+ :where(thead th:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
812
849
  padding-inline-start: 0;
813
850
  }
814
- :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
851
+ :where(thead th:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
815
852
  padding-inline-end: 0;
816
853
  }
817
- :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
854
+ :where(tbody td, tfoot td):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
818
855
  padding-top: 0.5714286em;
819
856
  padding-inline-end: 0.5714286em;
820
857
  padding-bottom: 0.5714286em;
821
858
  padding-inline-start: 0.5714286em;
822
859
  }
823
- :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
860
+ :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
824
861
  padding-inline-start: 0;
825
862
  }
826
- :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
863
+ :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
827
864
  padding-inline-end: 0;
828
865
  }
829
- :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
866
+ :where(figure):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
830
867
  margin-top: 2em;
831
868
  margin-bottom: 2em;
832
869
  }
833
- :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
870
+ :where(.prose > :first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
834
871
  margin-top: 0;
835
872
  }
836
- :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
873
+ :where(.prose > :last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
837
874
  margin-bottom: 0;
838
875
  }
839
876
  }
@@ -850,61 +887,61 @@
850
887
  .prose-lg {
851
888
  font-size: 1.125rem;
852
889
  line-height: 1.7777778;
853
- :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
890
+ :where(p):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
854
891
  margin-top: 1.3333333em;
855
892
  margin-bottom: 1.3333333em;
856
893
  }
857
- :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
894
+ :where([class~="lead"]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
858
895
  font-size: 1.2222222em;
859
896
  line-height: 1.4545455;
860
897
  margin-top: 1.0909091em;
861
898
  margin-bottom: 1.0909091em;
862
899
  }
863
- :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
900
+ :where(blockquote):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
864
901
  margin-top: 1.6666667em;
865
902
  margin-bottom: 1.6666667em;
866
903
  padding-inline-start: 1em;
867
904
  }
868
- :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
905
+ :where(h1):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
869
906
  font-size: 2.6666667em;
870
907
  margin-top: 0;
871
908
  margin-bottom: 0.8333333em;
872
909
  line-height: 1;
873
910
  }
874
- :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
911
+ :where(h2):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
875
912
  font-size: 1.6666667em;
876
913
  margin-top: 1.8666667em;
877
914
  margin-bottom: 1.0666667em;
878
915
  line-height: 1.3333333;
879
916
  }
880
- :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
917
+ :where(h3):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
881
918
  font-size: 1.3333333em;
882
919
  margin-top: 1.6666667em;
883
920
  margin-bottom: 0.6666667em;
884
921
  line-height: 1.5;
885
922
  }
886
- :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
923
+ :where(h4):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
887
924
  margin-top: 1.7777778em;
888
925
  margin-bottom: 0.4444444em;
889
926
  line-height: 1.5555556;
890
927
  }
891
- :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
928
+ :where(img):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
892
929
  margin-top: 1.7777778em;
893
930
  margin-bottom: 1.7777778em;
894
931
  }
895
- :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
932
+ :where(picture):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
896
933
  margin-top: 1.7777778em;
897
934
  margin-bottom: 1.7777778em;
898
935
  }
899
- :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
936
+ :where(picture > img):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
900
937
  margin-top: 0;
901
938
  margin-bottom: 0;
902
939
  }
903
- :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
940
+ :where(video):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
904
941
  margin-top: 1.7777778em;
905
942
  margin-bottom: 1.7777778em;
906
943
  }
907
- :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
944
+ :where(kbd):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
908
945
  font-size: 0.8888889em;
909
946
  border-radius: 0.3125rem;
910
947
  padding-top: 0.2222222em;
@@ -912,16 +949,16 @@
912
949
  padding-bottom: 0.2222222em;
913
950
  padding-inline-start: 0.4444444em;
914
951
  }
915
- :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
952
+ :where(code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
916
953
  font-size: 0.8888889em;
917
954
  }
918
- :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
955
+ :where(h2 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
919
956
  font-size: 0.8666667em;
920
957
  }
921
- :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
958
+ :where(h3 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
922
959
  font-size: 0.875em;
923
960
  }
924
- :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
961
+ :where(pre):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
925
962
  font-size: 0.8888889em;
926
963
  line-height: 1.75;
927
964
  margin-top: 2em;
@@ -932,178 +969,178 @@
932
969
  padding-bottom: 1em;
933
970
  padding-inline-start: 1.5em;
934
971
  }
935
- :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
972
+ :where(ol):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
936
973
  margin-top: 1.3333333em;
937
974
  margin-bottom: 1.3333333em;
938
975
  padding-inline-start: 1.5555556em;
939
976
  }
940
- :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
977
+ :where(ul):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
941
978
  margin-top: 1.3333333em;
942
979
  margin-bottom: 1.3333333em;
943
980
  padding-inline-start: 1.5555556em;
944
981
  }
945
- :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
982
+ :where(li):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
946
983
  margin-top: 0.6666667em;
947
984
  margin-bottom: 0.6666667em;
948
985
  }
949
- :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
986
+ :where(ol > li):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
950
987
  padding-inline-start: 0.4444444em;
951
988
  }
952
- :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
989
+ :where(ul > li):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
953
990
  padding-inline-start: 0.4444444em;
954
991
  }
955
- :where(.prose-lg > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
992
+ :where(.prose-lg > ul > li p):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
956
993
  margin-top: 0.8888889em;
957
994
  margin-bottom: 0.8888889em;
958
995
  }
959
- :where(.prose-lg > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
996
+ :where(.prose-lg > ul > li > p:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
960
997
  margin-top: 1.3333333em;
961
998
  }
962
- :where(.prose-lg > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
999
+ :where(.prose-lg > ul > li > p:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
963
1000
  margin-bottom: 1.3333333em;
964
1001
  }
965
- :where(.prose-lg > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1002
+ :where(.prose-lg > ol > li > p:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
966
1003
  margin-top: 1.3333333em;
967
1004
  }
968
- :where(.prose-lg > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1005
+ :where(.prose-lg > ol > li > p:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
969
1006
  margin-bottom: 1.3333333em;
970
1007
  }
971
- :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1008
+ :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
972
1009
  margin-top: 0.8888889em;
973
1010
  margin-bottom: 0.8888889em;
974
1011
  }
975
- :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1012
+ :where(dl):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
976
1013
  margin-top: 1.3333333em;
977
1014
  margin-bottom: 1.3333333em;
978
1015
  }
979
- :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1016
+ :where(dt):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
980
1017
  margin-top: 1.3333333em;
981
1018
  }
982
- :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1019
+ :where(dd):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
983
1020
  margin-top: 0.6666667em;
984
1021
  padding-inline-start: 1.5555556em;
985
1022
  }
986
- :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1023
+ :where(hr):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
987
1024
  margin-top: 3.1111111em;
988
1025
  margin-bottom: 3.1111111em;
989
1026
  }
990
- :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1027
+ :where(hr + *):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
991
1028
  margin-top: 0;
992
1029
  }
993
- :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1030
+ :where(h2 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
994
1031
  margin-top: 0;
995
1032
  }
996
- :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1033
+ :where(h3 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
997
1034
  margin-top: 0;
998
1035
  }
999
- :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1036
+ :where(h4 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1000
1037
  margin-top: 0;
1001
1038
  }
1002
- :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1039
+ :where(table):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1003
1040
  font-size: 0.8888889em;
1004
1041
  line-height: 1.5;
1005
1042
  }
1006
- :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1043
+ :where(thead th):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1007
1044
  padding-inline-end: 0.75em;
1008
1045
  padding-bottom: 0.75em;
1009
1046
  padding-inline-start: 0.75em;
1010
1047
  }
1011
- :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1048
+ :where(thead th:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1012
1049
  padding-inline-start: 0;
1013
1050
  }
1014
- :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1051
+ :where(thead th:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1015
1052
  padding-inline-end: 0;
1016
1053
  }
1017
- :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1054
+ :where(tbody td, tfoot td):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1018
1055
  padding-top: 0.75em;
1019
1056
  padding-inline-end: 0.75em;
1020
1057
  padding-bottom: 0.75em;
1021
1058
  padding-inline-start: 0.75em;
1022
1059
  }
1023
- :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1060
+ :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1024
1061
  padding-inline-start: 0;
1025
1062
  }
1026
- :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1063
+ :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1027
1064
  padding-inline-end: 0;
1028
1065
  }
1029
- :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1066
+ :where(figure):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1030
1067
  margin-top: 1.7777778em;
1031
1068
  margin-bottom: 1.7777778em;
1032
1069
  }
1033
- :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1070
+ :where(figure > *):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1034
1071
  margin-top: 0;
1035
1072
  margin-bottom: 0;
1036
1073
  }
1037
- :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1074
+ :where(figcaption):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1038
1075
  font-size: 0.8888889em;
1039
1076
  line-height: 1.5;
1040
1077
  margin-top: 1em;
1041
1078
  }
1042
- :where(.prose-lg > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1079
+ :where(.prose-lg > :first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1043
1080
  margin-top: 0;
1044
1081
  }
1045
- :where(.prose-lg > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1082
+ :where(.prose-lg > :last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1046
1083
  margin-bottom: 0;
1047
1084
  }
1048
1085
  }
1049
1086
  .prose-sm {
1050
1087
  font-size: 0.875rem;
1051
1088
  line-height: 1.7142857;
1052
- :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1089
+ :where(p):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1053
1090
  margin-top: 1.1428571em;
1054
1091
  margin-bottom: 1.1428571em;
1055
1092
  }
1056
- :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1093
+ :where([class~="lead"]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1057
1094
  font-size: 1.2857143em;
1058
1095
  line-height: 1.5555556;
1059
1096
  margin-top: 0.8888889em;
1060
1097
  margin-bottom: 0.8888889em;
1061
1098
  }
1062
- :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1099
+ :where(blockquote):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1063
1100
  margin-top: 1.3333333em;
1064
1101
  margin-bottom: 1.3333333em;
1065
1102
  padding-inline-start: 1.1111111em;
1066
1103
  }
1067
- :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1104
+ :where(h1):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1068
1105
  font-size: 2.1428571em;
1069
1106
  margin-top: 0;
1070
1107
  margin-bottom: 0.8em;
1071
1108
  line-height: 1.2;
1072
1109
  }
1073
- :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1110
+ :where(h2):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1074
1111
  font-size: 1.4285714em;
1075
1112
  margin-top: 1.6em;
1076
1113
  margin-bottom: 0.8em;
1077
1114
  line-height: 1.4;
1078
1115
  }
1079
- :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1116
+ :where(h3):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1080
1117
  font-size: 1.2857143em;
1081
1118
  margin-top: 1.5555556em;
1082
1119
  margin-bottom: 0.4444444em;
1083
1120
  line-height: 1.5555556;
1084
1121
  }
1085
- :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1122
+ :where(h4):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1086
1123
  margin-top: 1.4285714em;
1087
1124
  margin-bottom: 0.5714286em;
1088
1125
  line-height: 1.4285714;
1089
1126
  }
1090
- :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1127
+ :where(img):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1091
1128
  margin-top: 1.7142857em;
1092
1129
  margin-bottom: 1.7142857em;
1093
1130
  }
1094
- :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1131
+ :where(picture):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1095
1132
  margin-top: 1.7142857em;
1096
1133
  margin-bottom: 1.7142857em;
1097
1134
  }
1098
- :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1135
+ :where(picture > img):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1099
1136
  margin-top: 0;
1100
1137
  margin-bottom: 0;
1101
1138
  }
1102
- :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1139
+ :where(video):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1103
1140
  margin-top: 1.7142857em;
1104
1141
  margin-bottom: 1.7142857em;
1105
1142
  }
1106
- :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1143
+ :where(kbd):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1107
1144
  font-size: 0.8571429em;
1108
1145
  border-radius: 0.3125rem;
1109
1146
  padding-top: 0.1428571em;
@@ -1111,16 +1148,16 @@
1111
1148
  padding-bottom: 0.1428571em;
1112
1149
  padding-inline-start: 0.3571429em;
1113
1150
  }
1114
- :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1151
+ :where(code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1115
1152
  font-size: 0.8571429em;
1116
1153
  }
1117
- :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1154
+ :where(h2 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1118
1155
  font-size: 0.9em;
1119
1156
  }
1120
- :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1157
+ :where(h3 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1121
1158
  font-size: 0.8888889em;
1122
1159
  }
1123
- :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1160
+ :where(pre):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1124
1161
  font-size: 0.8571429em;
1125
1162
  line-height: 1.6666667;
1126
1163
  margin-top: 1.6666667em;
@@ -1131,178 +1168,178 @@
1131
1168
  padding-bottom: 0.6666667em;
1132
1169
  padding-inline-start: 1em;
1133
1170
  }
1134
- :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1171
+ :where(ol):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1135
1172
  margin-top: 1.1428571em;
1136
1173
  margin-bottom: 1.1428571em;
1137
1174
  padding-inline-start: 1.5714286em;
1138
1175
  }
1139
- :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1176
+ :where(ul):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1140
1177
  margin-top: 1.1428571em;
1141
1178
  margin-bottom: 1.1428571em;
1142
1179
  padding-inline-start: 1.5714286em;
1143
1180
  }
1144
- :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1181
+ :where(li):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1145
1182
  margin-top: 0.2857143em;
1146
1183
  margin-bottom: 0.2857143em;
1147
1184
  }
1148
- :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1185
+ :where(ol > li):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1149
1186
  padding-inline-start: 0.4285714em;
1150
1187
  }
1151
- :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1188
+ :where(ul > li):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1152
1189
  padding-inline-start: 0.4285714em;
1153
1190
  }
1154
- :where(.prose-sm > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1191
+ :where(.prose-sm > ul > li p):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1155
1192
  margin-top: 0.5714286em;
1156
1193
  margin-bottom: 0.5714286em;
1157
1194
  }
1158
- :where(.prose-sm > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1195
+ :where(.prose-sm > ul > li > p:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1159
1196
  margin-top: 1.1428571em;
1160
1197
  }
1161
- :where(.prose-sm > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1198
+ :where(.prose-sm > ul > li > p:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1162
1199
  margin-bottom: 1.1428571em;
1163
1200
  }
1164
- :where(.prose-sm > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1201
+ :where(.prose-sm > ol > li > p:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1165
1202
  margin-top: 1.1428571em;
1166
1203
  }
1167
- :where(.prose-sm > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1204
+ :where(.prose-sm > ol > li > p:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1168
1205
  margin-bottom: 1.1428571em;
1169
1206
  }
1170
- :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1207
+ :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1171
1208
  margin-top: 0.5714286em;
1172
1209
  margin-bottom: 0.5714286em;
1173
1210
  }
1174
- :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1211
+ :where(dl):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1175
1212
  margin-top: 1.1428571em;
1176
1213
  margin-bottom: 1.1428571em;
1177
1214
  }
1178
- :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1215
+ :where(dt):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1179
1216
  margin-top: 1.1428571em;
1180
1217
  }
1181
- :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1218
+ :where(dd):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1182
1219
  margin-top: 0.2857143em;
1183
1220
  padding-inline-start: 1.5714286em;
1184
1221
  }
1185
- :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1222
+ :where(hr):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1186
1223
  margin-top: 2.8571429em;
1187
1224
  margin-bottom: 2.8571429em;
1188
1225
  }
1189
- :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1226
+ :where(hr + *):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1190
1227
  margin-top: 0;
1191
1228
  }
1192
- :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1229
+ :where(h2 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1193
1230
  margin-top: 0;
1194
1231
  }
1195
- :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1232
+ :where(h3 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1196
1233
  margin-top: 0;
1197
1234
  }
1198
- :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1235
+ :where(h4 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1199
1236
  margin-top: 0;
1200
1237
  }
1201
- :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1238
+ :where(table):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1202
1239
  font-size: 0.8571429em;
1203
1240
  line-height: 1.5;
1204
1241
  }
1205
- :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1242
+ :where(thead th):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1206
1243
  padding-inline-end: 1em;
1207
1244
  padding-bottom: 0.6666667em;
1208
1245
  padding-inline-start: 1em;
1209
1246
  }
1210
- :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1247
+ :where(thead th:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1211
1248
  padding-inline-start: 0;
1212
1249
  }
1213
- :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1250
+ :where(thead th:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1214
1251
  padding-inline-end: 0;
1215
1252
  }
1216
- :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1253
+ :where(tbody td, tfoot td):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1217
1254
  padding-top: 0.6666667em;
1218
1255
  padding-inline-end: 1em;
1219
1256
  padding-bottom: 0.6666667em;
1220
1257
  padding-inline-start: 1em;
1221
1258
  }
1222
- :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1259
+ :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1223
1260
  padding-inline-start: 0;
1224
1261
  }
1225
- :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1262
+ :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1226
1263
  padding-inline-end: 0;
1227
1264
  }
1228
- :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1265
+ :where(figure):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1229
1266
  margin-top: 1.7142857em;
1230
1267
  margin-bottom: 1.7142857em;
1231
1268
  }
1232
- :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1269
+ :where(figure > *):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1233
1270
  margin-top: 0;
1234
1271
  margin-bottom: 0;
1235
1272
  }
1236
- :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1273
+ :where(figcaption):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1237
1274
  font-size: 0.8571429em;
1238
1275
  line-height: 1.3333333;
1239
1276
  margin-top: 0.6666667em;
1240
1277
  }
1241
- :where(.prose-sm > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1278
+ :where(.prose-sm > :first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1242
1279
  margin-top: 0;
1243
1280
  }
1244
- :where(.prose-sm > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1281
+ :where(.prose-sm > :last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1245
1282
  margin-bottom: 0;
1246
1283
  }
1247
1284
  }
1248
1285
  .prose-xl {
1249
1286
  font-size: 1.25rem;
1250
1287
  line-height: 1.8;
1251
- :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1288
+ :where(p):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1252
1289
  margin-top: 1.2em;
1253
1290
  margin-bottom: 1.2em;
1254
1291
  }
1255
- :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1292
+ :where([class~="lead"]):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1256
1293
  font-size: 1.2em;
1257
1294
  line-height: 1.5;
1258
1295
  margin-top: 1em;
1259
1296
  margin-bottom: 1em;
1260
1297
  }
1261
- :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1298
+ :where(blockquote):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1262
1299
  margin-top: 1.6em;
1263
1300
  margin-bottom: 1.6em;
1264
1301
  padding-inline-start: 1.0666667em;
1265
1302
  }
1266
- :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1303
+ :where(h1):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1267
1304
  font-size: 2.8em;
1268
1305
  margin-top: 0;
1269
1306
  margin-bottom: 0.8571429em;
1270
1307
  line-height: 1;
1271
1308
  }
1272
- :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1309
+ :where(h2):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1273
1310
  font-size: 1.8em;
1274
1311
  margin-top: 1.5555556em;
1275
1312
  margin-bottom: 0.8888889em;
1276
1313
  line-height: 1.1111111;
1277
1314
  }
1278
- :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1315
+ :where(h3):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1279
1316
  font-size: 1.5em;
1280
1317
  margin-top: 1.6em;
1281
1318
  margin-bottom: 0.6666667em;
1282
1319
  line-height: 1.3333333;
1283
1320
  }
1284
- :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1321
+ :where(h4):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1285
1322
  margin-top: 1.8em;
1286
1323
  margin-bottom: 0.6em;
1287
1324
  line-height: 1.6;
1288
1325
  }
1289
- :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1326
+ :where(img):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1290
1327
  margin-top: 2em;
1291
1328
  margin-bottom: 2em;
1292
1329
  }
1293
- :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1330
+ :where(picture):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1294
1331
  margin-top: 2em;
1295
1332
  margin-bottom: 2em;
1296
1333
  }
1297
- :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1334
+ :where(picture > img):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1298
1335
  margin-top: 0;
1299
1336
  margin-bottom: 0;
1300
1337
  }
1301
- :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1338
+ :where(video):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1302
1339
  margin-top: 2em;
1303
1340
  margin-bottom: 2em;
1304
1341
  }
1305
- :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1342
+ :where(kbd):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1306
1343
  font-size: 0.9em;
1307
1344
  border-radius: 0.3125rem;
1308
1345
  padding-top: 0.25em;
@@ -1310,16 +1347,16 @@
1310
1347
  padding-bottom: 0.25em;
1311
1348
  padding-inline-start: 0.4em;
1312
1349
  }
1313
- :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1350
+ :where(code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1314
1351
  font-size: 0.9em;
1315
1352
  }
1316
- :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1353
+ :where(h2 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1317
1354
  font-size: 0.8611111em;
1318
1355
  }
1319
- :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1356
+ :where(h3 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1320
1357
  font-size: 0.9em;
1321
1358
  }
1322
- :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1359
+ :where(pre):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1323
1360
  font-size: 0.9em;
1324
1361
  line-height: 1.7777778;
1325
1362
  margin-top: 2em;
@@ -1330,117 +1367,117 @@
1330
1367
  padding-bottom: 1.1111111em;
1331
1368
  padding-inline-start: 1.3333333em;
1332
1369
  }
1333
- :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1370
+ :where(ol):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1334
1371
  margin-top: 1.2em;
1335
1372
  margin-bottom: 1.2em;
1336
1373
  padding-inline-start: 1.6em;
1337
1374
  }
1338
- :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1375
+ :where(ul):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1339
1376
  margin-top: 1.2em;
1340
1377
  margin-bottom: 1.2em;
1341
1378
  padding-inline-start: 1.6em;
1342
1379
  }
1343
- :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1380
+ :where(li):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1344
1381
  margin-top: 0.6em;
1345
1382
  margin-bottom: 0.6em;
1346
1383
  }
1347
- :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1384
+ :where(ol > li):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1348
1385
  padding-inline-start: 0.4em;
1349
1386
  }
1350
- :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1387
+ :where(ul > li):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1351
1388
  padding-inline-start: 0.4em;
1352
1389
  }
1353
- :where(.prose-xl > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1390
+ :where(.prose-xl > ul > li p):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1354
1391
  margin-top: 0.8em;
1355
1392
  margin-bottom: 0.8em;
1356
1393
  }
1357
- :where(.prose-xl > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1394
+ :where(.prose-xl > ul > li > p:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1358
1395
  margin-top: 1.2em;
1359
1396
  }
1360
- :where(.prose-xl > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1397
+ :where(.prose-xl > ul > li > p:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1361
1398
  margin-bottom: 1.2em;
1362
1399
  }
1363
- :where(.prose-xl > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1400
+ :where(.prose-xl > ol > li > p:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1364
1401
  margin-top: 1.2em;
1365
1402
  }
1366
- :where(.prose-xl > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1403
+ :where(.prose-xl > ol > li > p:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1367
1404
  margin-bottom: 1.2em;
1368
1405
  }
1369
- :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1406
+ :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1370
1407
  margin-top: 0.8em;
1371
1408
  margin-bottom: 0.8em;
1372
1409
  }
1373
- :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1410
+ :where(dl):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1374
1411
  margin-top: 1.2em;
1375
1412
  margin-bottom: 1.2em;
1376
1413
  }
1377
- :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1414
+ :where(dt):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1378
1415
  margin-top: 1.2em;
1379
1416
  }
1380
- :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1417
+ :where(dd):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1381
1418
  margin-top: 0.6em;
1382
1419
  padding-inline-start: 1.6em;
1383
1420
  }
1384
- :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1421
+ :where(hr):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1385
1422
  margin-top: 2.8em;
1386
1423
  margin-bottom: 2.8em;
1387
1424
  }
1388
- :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1425
+ :where(hr + *):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1389
1426
  margin-top: 0;
1390
1427
  }
1391
- :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1428
+ :where(h2 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1392
1429
  margin-top: 0;
1393
1430
  }
1394
- :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1431
+ :where(h3 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1395
1432
  margin-top: 0;
1396
1433
  }
1397
- :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1434
+ :where(h4 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1398
1435
  margin-top: 0;
1399
1436
  }
1400
- :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1437
+ :where(table):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1401
1438
  font-size: 0.9em;
1402
1439
  line-height: 1.5555556;
1403
1440
  }
1404
- :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1441
+ :where(thead th):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1405
1442
  padding-inline-end: 0.6666667em;
1406
1443
  padding-bottom: 0.8888889em;
1407
1444
  padding-inline-start: 0.6666667em;
1408
1445
  }
1409
- :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1446
+ :where(thead th:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1410
1447
  padding-inline-start: 0;
1411
1448
  }
1412
- :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1449
+ :where(thead th:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1413
1450
  padding-inline-end: 0;
1414
1451
  }
1415
- :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1452
+ :where(tbody td, tfoot td):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1416
1453
  padding-top: 0.8888889em;
1417
1454
  padding-inline-end: 0.6666667em;
1418
1455
  padding-bottom: 0.8888889em;
1419
1456
  padding-inline-start: 0.6666667em;
1420
1457
  }
1421
- :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1458
+ :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1422
1459
  padding-inline-start: 0;
1423
1460
  }
1424
- :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1461
+ :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1425
1462
  padding-inline-end: 0;
1426
1463
  }
1427
- :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1464
+ :where(figure):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1428
1465
  margin-top: 2em;
1429
1466
  margin-bottom: 2em;
1430
1467
  }
1431
- :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1468
+ :where(figure > *):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1432
1469
  margin-top: 0;
1433
1470
  margin-bottom: 0;
1434
1471
  }
1435
- :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1472
+ :where(figcaption):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1436
1473
  font-size: 0.9em;
1437
1474
  line-height: 1.5555556;
1438
1475
  margin-top: 1em;
1439
1476
  }
1440
- :where(.prose-xl > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1477
+ :where(.prose-xl > :first-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1441
1478
  margin-top: 0;
1442
1479
  }
1443
- :where(.prose-xl > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1480
+ :where(.prose-xl > :last-child):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
1444
1481
  margin-bottom: 0;
1445
1482
  }
1446
1483
  }
@@ -1480,23 +1517,41 @@
1480
1517
  .-mt-0\.5 {
1481
1518
  margin-top: calc(var(--spacing) * -0.5);
1482
1519
  }
1520
+ .mt-0\.5 {
1521
+ margin-top: calc(var(--spacing) * 0.5);
1522
+ }
1483
1523
  .mt-1 {
1484
- margin-top: calc(var(--spacing) * 1);
1524
+ margin-top: var(--spacing);
1485
1525
  }
1486
1526
  .mt-2 {
1487
1527
  margin-top: calc(var(--spacing) * 2);
1488
1528
  }
1529
+ .mt-3 {
1530
+ margin-top: calc(var(--spacing) * 3);
1531
+ }
1532
+ .mt-12 {
1533
+ margin-top: calc(var(--spacing) * 12);
1534
+ }
1535
+ .mt-16 {
1536
+ margin-top: calc(var(--spacing) * 16);
1537
+ }
1538
+ .mt-20 {
1539
+ margin-top: calc(var(--spacing) * 20);
1540
+ }
1541
+ .mt-24 {
1542
+ margin-top: calc(var(--spacing) * 24);
1543
+ }
1489
1544
  .mr-2 {
1490
1545
  margin-right: calc(var(--spacing) * 2);
1491
1546
  }
1492
- .mr-\[0\.3rem\] {
1493
- margin-right: 0.3rem;
1547
+ .mr-3 {
1548
+ margin-right: calc(var(--spacing) * 3);
1494
1549
  }
1495
1550
  .mb-0 {
1496
- margin-bottom: calc(var(--spacing) * 0);
1551
+ margin-bottom: 0;
1497
1552
  }
1498
1553
  .mb-1 {
1499
- margin-bottom: calc(var(--spacing) * 1);
1554
+ margin-bottom: var(--spacing);
1500
1555
  }
1501
1556
  .mb-2 {
1502
1557
  margin-bottom: calc(var(--spacing) * 2);
@@ -1507,11 +1562,21 @@
1507
1562
  .mb-4 {
1508
1563
  margin-bottom: calc(var(--spacing) * 4);
1509
1564
  }
1565
+ .mb-12 {
1566
+ margin-bottom: calc(var(--spacing) * 12);
1567
+ }
1510
1568
  .-ml-4 {
1511
1569
  margin-left: calc(var(--spacing) * -4);
1512
1570
  }
1513
1571
  .ml-1 {
1514
- margin-left: calc(var(--spacing) * 1);
1572
+ margin-left: var(--spacing);
1573
+ }
1574
+ .noscroll {
1575
+ -ms-overflow-style: none;
1576
+ scrollbar-width: none;
1577
+ &::-webkit-scrollbar {
1578
+ display: none;
1579
+ }
1515
1580
  }
1516
1581
  .page-container {
1517
1582
  display: grid;
@@ -1522,13 +1587,6 @@
1522
1587
  padding-top: 2rem;
1523
1588
  }
1524
1589
  }
1525
- .noscroll {
1526
- -ms-overflow-style: none;
1527
- scrollbar-width: none;
1528
- &::-webkit-scrollbar {
1529
- display: none;
1530
- }
1531
- }
1532
1590
  .block {
1533
1591
  display: block;
1534
1592
  }
@@ -1547,12 +1605,19 @@
1547
1605
  .aspect-3\/1 {
1548
1606
  aspect-ratio: 3/1;
1549
1607
  }
1608
+ .size-8 {
1609
+ width: calc(var(--spacing) * 8);
1610
+ height: calc(var(--spacing) * 8);
1611
+ }
1550
1612
  .h-0 {
1551
- height: calc(var(--spacing) * 0);
1613
+ height: 0;
1552
1614
  }
1553
1615
  .h-0\.5 {
1554
1616
  height: calc(var(--spacing) * 0.5);
1555
1617
  }
1618
+ .h-1\.5 {
1619
+ height: calc(var(--spacing) * 1.5);
1620
+ }
1556
1621
  .h-2 {
1557
1622
  height: calc(var(--spacing) * 2);
1558
1623
  }
@@ -1580,8 +1645,11 @@
1580
1645
  .h-8 {
1581
1646
  height: calc(var(--spacing) * 8);
1582
1647
  }
1583
- .h-10\.5 {
1584
- height: calc(var(--spacing) * 10.5);
1648
+ .h-9 {
1649
+ height: calc(var(--spacing) * 9);
1650
+ }
1651
+ .h-10 {
1652
+ height: calc(var(--spacing) * 10);
1585
1653
  }
1586
1654
  .h-11 {
1587
1655
  height: calc(var(--spacing) * 11);
@@ -1605,26 +1673,29 @@
1605
1673
  height: 100vh;
1606
1674
  }
1607
1675
  .max-h-0 {
1608
- max-height: calc(var(--spacing) * 0);
1676
+ max-height: 0;
1609
1677
  }
1610
1678
  .max-h-60 {
1611
1679
  max-height: calc(var(--spacing) * 60);
1612
1680
  }
1681
+ .max-h-\[9999px\] {
1682
+ max-height: 9999px;
1683
+ }
1613
1684
  .max-h-\[calc\(100vh-4rem\)\] {
1614
1685
  max-height: calc(100vh - 4rem);
1615
1686
  }
1616
1687
  .min-h-0 {
1617
- min-height: calc(var(--spacing) * 0);
1618
- }
1619
- .min-h-8 {
1620
- min-height: calc(var(--spacing) * 8);
1688
+ min-height: 0;
1621
1689
  }
1622
- .min-h-10\.5 {
1623
- min-height: calc(var(--spacing) * 10.5);
1690
+ .min-h-10 {
1691
+ min-height: calc(var(--spacing) * 10);
1624
1692
  }
1625
1693
  .min-h-16 {
1626
1694
  min-height: calc(var(--spacing) * 16);
1627
1695
  }
1696
+ .w-1\.5 {
1697
+ width: calc(var(--spacing) * 1.5);
1698
+ }
1628
1699
  .w-2 {
1629
1700
  width: calc(var(--spacing) * 2);
1630
1701
  }
@@ -1646,9 +1717,15 @@
1646
1717
  .w-6 {
1647
1718
  width: calc(var(--spacing) * 6);
1648
1719
  }
1720
+ .w-7 {
1721
+ width: calc(var(--spacing) * 7);
1722
+ }
1649
1723
  .w-8 {
1650
1724
  width: calc(var(--spacing) * 8);
1651
1725
  }
1726
+ .w-9 {
1727
+ width: calc(var(--spacing) * 9);
1728
+ }
1652
1729
  .w-11 {
1653
1730
  width: calc(var(--spacing) * 11);
1654
1731
  }
@@ -1691,6 +1768,9 @@
1691
1768
  .max-w-6xl {
1692
1769
  max-width: var(--container-6xl);
1693
1770
  }
1771
+ .max-w-60 {
1772
+ max-width: calc(var(--spacing) * 60);
1773
+ }
1694
1774
  .max-w-140 {
1695
1775
  max-width: calc(var(--spacing) * 140);
1696
1776
  }
@@ -1713,7 +1793,7 @@
1713
1793
  max-width: var(--container-xs);
1714
1794
  }
1715
1795
  .min-w-0 {
1716
- min-width: calc(var(--spacing) * 0);
1796
+ min-width: 0;
1717
1797
  }
1718
1798
  .min-w-10 {
1719
1799
  min-width: calc(var(--spacing) * 10);
@@ -1727,9 +1807,6 @@
1727
1807
  .min-w-70 {
1728
1808
  min-width: calc(var(--spacing) * 70);
1729
1809
  }
1730
- .min-w-fit {
1731
- min-width: fit-content;
1732
- }
1733
1810
  .min-w-full {
1734
1811
  min-width: 100%;
1735
1812
  }
@@ -1759,7 +1836,7 @@
1759
1836
  translate: var(--tw-translate-x) var(--tw-translate-y);
1760
1837
  }
1761
1838
  .translate-y-0 {
1762
- --tw-translate-y: calc(var(--spacing) * 0);
1839
+ --tw-translate-y: 0;
1763
1840
  translate: var(--tw-translate-x) var(--tw-translate-y);
1764
1841
  }
1765
1842
  .scale-100 {
@@ -1786,6 +1863,9 @@
1786
1863
  .animate-jump {
1787
1864
  animation: jump 0.4s 1;
1788
1865
  }
1866
+ .animate-ping {
1867
+ animation: var(--animate-ping);
1868
+ }
1789
1869
  .cursor-crosshair {
1790
1870
  cursor: crosshair;
1791
1871
  }
@@ -1810,9 +1890,6 @@
1810
1890
  .grid-cols-8 {
1811
1891
  grid-template-columns: repeat(8, minmax(0, 1fr));
1812
1892
  }
1813
- .grid-cols-\[min-content_auto\] {
1814
- grid-template-columns: min-content auto;
1815
- }
1816
1893
  .flex-col {
1817
1894
  flex-direction: column;
1818
1895
  }
@@ -1843,11 +1920,11 @@
1843
1920
  .justify-end {
1844
1921
  justify-content: flex-end;
1845
1922
  }
1846
- .justify-evenly {
1847
- justify-content: space-evenly;
1923
+ .gap-0\.5 {
1924
+ gap: calc(var(--spacing) * 0.5);
1848
1925
  }
1849
1926
  .gap-1 {
1850
- gap: calc(var(--spacing) * 1);
1927
+ gap: var(--spacing);
1851
1928
  }
1852
1929
  .gap-1\.5 {
1853
1930
  gap: calc(var(--spacing) * 1.5);
@@ -1855,12 +1932,24 @@
1855
1932
  .gap-2 {
1856
1933
  gap: calc(var(--spacing) * 2);
1857
1934
  }
1935
+ .gap-2\.5 {
1936
+ gap: calc(var(--spacing) * 2.5);
1937
+ }
1858
1938
  .gap-3 {
1859
1939
  gap: calc(var(--spacing) * 3);
1860
1940
  }
1861
1941
  .gap-4 {
1862
1942
  gap: calc(var(--spacing) * 4);
1863
1943
  }
1944
+ .gap-6 {
1945
+ gap: calc(var(--spacing) * 6);
1946
+ }
1947
+ .gap-8 {
1948
+ gap: calc(var(--spacing) * 8);
1949
+ }
1950
+ .gap-16 {
1951
+ gap: calc(var(--spacing) * 16);
1952
+ }
1864
1953
  .space-x-4 {
1865
1954
  :where(& > :not(:last-child)) {
1866
1955
  --tw-space-x-reverse: 0;
@@ -1868,14 +1957,6 @@
1868
1957
  margin-inline-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-x-reverse)));
1869
1958
  }
1870
1959
  }
1871
- .divide-x {
1872
- :where(& > :not(:last-child)) {
1873
- --tw-divide-x-reverse: 0;
1874
- border-inline-style: var(--tw-border-style);
1875
- border-inline-start-width: calc(1px * var(--tw-divide-x-reverse));
1876
- border-inline-end-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
1877
- }
1878
- }
1879
1960
  .divide-y {
1880
1961
  :where(& > :not(:last-child)) {
1881
1962
  --tw-divide-y-reverse: 0;
@@ -1885,18 +1966,37 @@
1885
1966
  border-bottom-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
1886
1967
  }
1887
1968
  }
1888
- .divide-login-600 {
1969
+ .divide-login-500\/25 {
1889
1970
  :where(& > :not(:last-child)) {
1890
- border-color: var(--color-login-600);
1971
+ border-color: color-mix(in srgb, #323232 25%, transparent);
1972
+ @supports (color: color-mix(in lab, red, red)) {
1973
+ border-color: color-mix(in oklab, var(--color-login-500) 25%, transparent);
1974
+ }
1891
1975
  }
1892
1976
  }
1893
- .divide-transparent {
1977
+ .divide-login-600\/20 {
1894
1978
  :where(& > :not(:last-child)) {
1895
- border-color: transparent;
1979
+ border-color: color-mix(in srgb, #212121 20%, transparent);
1980
+ @supports (color: color-mix(in lab, red, red)) {
1981
+ border-color: color-mix(in oklab, var(--color-login-600) 20%, transparent);
1982
+ }
1896
1983
  }
1897
1984
  }
1898
- .self-center {
1899
- align-self: center;
1985
+ .divide-login-600\/25 {
1986
+ :where(& > :not(:last-child)) {
1987
+ border-color: color-mix(in srgb, #212121 25%, transparent);
1988
+ @supports (color: color-mix(in lab, red, red)) {
1989
+ border-color: color-mix(in oklab, var(--color-login-600) 25%, transparent);
1990
+ }
1991
+ }
1992
+ }
1993
+ .divide-login-600\/30 {
1994
+ :where(& > :not(:last-child)) {
1995
+ border-color: color-mix(in srgb, #212121 30%, transparent);
1996
+ @supports (color: color-mix(in lab, red, red)) {
1997
+ border-color: color-mix(in oklab, var(--color-login-600) 30%, transparent);
1998
+ }
1999
+ }
1900
2000
  }
1901
2001
  .truncate {
1902
2002
  overflow: hidden;
@@ -1949,18 +2049,10 @@
1949
2049
  border-style: var(--tw-border-style);
1950
2050
  border-width: 1px;
1951
2051
  }
1952
- .border-0 {
1953
- border-style: var(--tw-border-style);
1954
- border-width: 0px;
1955
- }
1956
2052
  .border-2 {
1957
2053
  border-style: var(--tw-border-style);
1958
2054
  border-width: 2px;
1959
2055
  }
1960
- .border-\[0\.10rem\] {
1961
- border-style: var(--tw-border-style);
1962
- border-width: 0.10rem;
1963
- }
1964
2056
  .border-t {
1965
2057
  border-top-style: var(--tw-border-style);
1966
2058
  border-top-width: 1px;
@@ -1969,31 +2061,20 @@
1969
2061
  border-bottom-style: var(--tw-border-style);
1970
2062
  border-bottom-width: 1px;
1971
2063
  }
2064
+ .border-l-2 {
2065
+ border-left-style: var(--tw-border-style);
2066
+ border-left-width: 2px;
2067
+ }
1972
2068
  .border-none {
1973
2069
  --tw-border-style: none;
1974
2070
  border-style: none;
1975
2071
  }
1976
- .border-amber-400\/25 {
1977
- border-color: color-mix(in srgb, oklch(82.8% 0.189 84.429) 25%, transparent);
1978
- @supports (color: color-mix(in lab, red, red)) {
1979
- border-color: color-mix(in oklab, var(--color-amber-400) 25%, transparent);
1980
- }
1981
- }
1982
2072
  .border-gray-200 {
1983
2073
  border-color: var(--color-gray-200);
1984
2074
  }
1985
2075
  .border-login {
1986
2076
  border-color: var(--color-login);
1987
2077
  }
1988
- .border-login-50 {
1989
- border-color: var(--color-login-50);
1990
- }
1991
- .border-login-100\/10 {
1992
- border-color: color-mix(in srgb, #b0b0b0 10%, transparent);
1993
- @supports (color: color-mix(in lab, red, red)) {
1994
- border-color: color-mix(in oklab, var(--color-login-100) 10%, transparent);
1995
- }
1996
- }
1997
2078
  .border-login-200 {
1998
2079
  border-color: var(--color-login-200);
1999
2080
  }
@@ -2003,6 +2084,30 @@
2003
2084
  .border-login-500 {
2004
2085
  border-color: var(--color-login-500);
2005
2086
  }
2087
+ .border-login-500\/20 {
2088
+ border-color: color-mix(in srgb, #323232 20%, transparent);
2089
+ @supports (color: color-mix(in lab, red, red)) {
2090
+ border-color: color-mix(in oklab, var(--color-login-500) 20%, transparent);
2091
+ }
2092
+ }
2093
+ .border-login-500\/25 {
2094
+ border-color: color-mix(in srgb, #323232 25%, transparent);
2095
+ @supports (color: color-mix(in lab, red, red)) {
2096
+ border-color: color-mix(in oklab, var(--color-login-500) 25%, transparent);
2097
+ }
2098
+ }
2099
+ .border-login-500\/30 {
2100
+ border-color: color-mix(in srgb, #323232 30%, transparent);
2101
+ @supports (color: color-mix(in lab, red, red)) {
2102
+ border-color: color-mix(in oklab, var(--color-login-500) 30%, transparent);
2103
+ }
2104
+ }
2105
+ .border-login-500\/40 {
2106
+ border-color: color-mix(in srgb, #323232 40%, transparent);
2107
+ @supports (color: color-mix(in lab, red, red)) {
2108
+ border-color: color-mix(in oklab, var(--color-login-500) 40%, transparent);
2109
+ }
2110
+ }
2006
2111
  .border-login-500\/50 {
2007
2112
  border-color: color-mix(in srgb, #323232 50%, transparent);
2008
2113
  @supports (color: color-mix(in lab, red, red)) {
@@ -2012,42 +2117,57 @@
2012
2117
  .border-login-600 {
2013
2118
  border-color: var(--color-login-600);
2014
2119
  }
2015
- .border-login-600\/50 {
2016
- border-color: color-mix(in srgb, #212121 50%, transparent);
2120
+ .border-login-600\/20 {
2121
+ border-color: color-mix(in srgb, #212121 20%, transparent);
2017
2122
  @supports (color: color-mix(in lab, red, red)) {
2018
- border-color: color-mix(in oklab, var(--color-login-600) 50%, transparent);
2123
+ border-color: color-mix(in oklab, var(--color-login-600) 20%, transparent);
2019
2124
  }
2020
2125
  }
2021
- .border-login\/50 {
2022
- border-color: color-mix(in srgb, #fd8738 50%, transparent);
2126
+ .border-login-600\/30 {
2127
+ border-color: color-mix(in srgb, #212121 30%, transparent);
2023
2128
  @supports (color: color-mix(in lab, red, red)) {
2024
- border-color: color-mix(in oklab, var(--color-login) 50%, transparent);
2129
+ border-color: color-mix(in oklab, var(--color-login-600) 30%, transparent);
2025
2130
  }
2026
2131
  }
2027
- .border-orange-400\/25 {
2028
- border-color: color-mix(in srgb, oklch(75% 0.183 55.934) 25%, transparent);
2132
+ .border-login\/50 {
2133
+ border-color: color-mix(in srgb, #fd8738 50%, transparent);
2029
2134
  @supports (color: color-mix(in lab, red, red)) {
2030
- border-color: color-mix(in oklab, var(--color-orange-400) 25%, transparent);
2135
+ border-color: color-mix(in oklab, var(--color-login) 50%, transparent);
2031
2136
  }
2032
2137
  }
2033
- .border-red-400\/25 {
2034
- border-color: color-mix(in srgb, oklch(70.4% 0.191 22.216) 25%, transparent);
2138
+ .border-login\/60 {
2139
+ border-color: color-mix(in srgb, #fd8738 60%, transparent);
2035
2140
  @supports (color: color-mix(in lab, red, red)) {
2036
- border-color: color-mix(in oklab, var(--color-red-400) 25%, transparent);
2141
+ border-color: color-mix(in oklab, var(--color-login) 60%, transparent);
2037
2142
  }
2038
2143
  }
2039
- .border-red-500 {
2040
- border-color: var(--color-red-500);
2041
- }
2042
- .border-sky-400\/25 {
2043
- border-color: color-mix(in srgb, oklch(74.6% 0.16 232.661) 25%, transparent);
2144
+ .border-red-500\/70 {
2145
+ border-color: color-mix(in srgb, oklch(63.7% 0.237 25.331) 70%, transparent);
2044
2146
  @supports (color: color-mix(in lab, red, red)) {
2045
- border-color: color-mix(in oklab, var(--color-sky-400) 25%, transparent);
2147
+ border-color: color-mix(in oklab, var(--color-red-500) 70%, transparent);
2046
2148
  }
2047
2149
  }
2048
2150
  .border-white {
2049
2151
  border-color: var(--color-white);
2050
2152
  }
2153
+ .border-l-amber-500 {
2154
+ border-left-color: var(--color-amber-500);
2155
+ }
2156
+ .border-l-blue-500 {
2157
+ border-left-color: var(--color-blue-500);
2158
+ }
2159
+ .border-l-green-500 {
2160
+ border-left-color: var(--color-green-500);
2161
+ }
2162
+ .border-l-login-400 {
2163
+ border-left-color: var(--color-login-400);
2164
+ }
2165
+ .border-l-orange-500 {
2166
+ border-left-color: var(--color-orange-500);
2167
+ }
2168
+ .border-l-red-500 {
2169
+ border-left-color: var(--color-red-500);
2170
+ }
2051
2171
  .bg-\[\#181818f0\] {
2052
2172
  background-color: #181818f0;
2053
2173
  }
@@ -2060,10 +2180,10 @@
2060
2180
  background-color: color-mix(in oklab, var(--color-amber-500) 10%, transparent);
2061
2181
  }
2062
2182
  }
2063
- .bg-black\/60 {
2064
- background-color: color-mix(in srgb, #000 60%, transparent);
2183
+ .bg-black\/50 {
2184
+ background-color: color-mix(in srgb, #000 50%, transparent);
2065
2185
  @supports (color: color-mix(in lab, red, red)) {
2066
- background-color: color-mix(in oklab, var(--color-black) 60%, transparent);
2186
+ background-color: color-mix(in oklab, var(--color-black) 50%, transparent);
2067
2187
  }
2068
2188
  }
2069
2189
  .bg-blue-500\/20 {
@@ -2075,10 +2195,10 @@
2075
2195
  .bg-blue-600 {
2076
2196
  background-color: var(--color-blue-600);
2077
2197
  }
2078
- .bg-blue-600\/70 {
2079
- background-color: color-mix(in srgb, oklch(54.6% 0.245 262.881) 70%, transparent);
2198
+ .bg-emerald-500\/10 {
2199
+ background-color: color-mix(in srgb, oklch(69.6% 0.17 162.48) 10%, transparent);
2080
2200
  @supports (color: color-mix(in lab, red, red)) {
2081
- background-color: color-mix(in oklab, var(--color-blue-600) 70%, transparent);
2201
+ background-color: color-mix(in oklab, var(--color-emerald-500) 10%, transparent);
2082
2202
  }
2083
2203
  }
2084
2204
  .bg-gray-500\/20 {
@@ -2087,8 +2207,8 @@
2087
2207
  background-color: color-mix(in oklab, var(--color-gray-500) 20%, transparent);
2088
2208
  }
2089
2209
  }
2090
- .bg-gray-900 {
2091
- background-color: var(--color-gray-900);
2210
+ .bg-green-500 {
2211
+ background-color: var(--color-green-500);
2092
2212
  }
2093
2213
  .bg-green-500\/20 {
2094
2214
  background-color: color-mix(in srgb, oklch(72.3% 0.219 149.579) 20%, transparent);
@@ -2096,11 +2216,8 @@
2096
2216
  background-color: color-mix(in oklab, var(--color-green-500) 20%, transparent);
2097
2217
  }
2098
2218
  }
2099
- .bg-green-600\/70 {
2100
- background-color: color-mix(in srgb, oklch(62.7% 0.194 149.214) 70%, transparent);
2101
- @supports (color: color-mix(in lab, red, red)) {
2102
- background-color: color-mix(in oklab, var(--color-green-600) 70%, transparent);
2103
- }
2219
+ .bg-green-600 {
2220
+ background-color: var(--color-green-600);
2104
2221
  }
2105
2222
  .bg-login {
2106
2223
  background-color: var(--color-login);
@@ -2111,21 +2228,6 @@
2111
2228
  .bg-login-50 {
2112
2229
  background-color: var(--color-login-50);
2113
2230
  }
2114
- .bg-login-50\/0 {
2115
- background-color: color-mix(in srgb, #ededed 0%, transparent);
2116
- @supports (color: color-mix(in lab, red, red)) {
2117
- background-color: color-mix(in oklab, var(--color-login-50) 0%, transparent);
2118
- }
2119
- }
2120
- .bg-login-50\/5 {
2121
- background-color: color-mix(in srgb, #ededed 5%, transparent);
2122
- @supports (color: color-mix(in lab, red, red)) {
2123
- background-color: color-mix(in oklab, var(--color-login-50) 5%, transparent);
2124
- }
2125
- }
2126
- .bg-login-200 {
2127
- background-color: var(--color-login-200);
2128
- }
2129
2231
  .bg-login-400 {
2130
2232
  background-color: var(--color-login-400);
2131
2233
  }
@@ -2138,18 +2240,6 @@
2138
2240
  background-color: color-mix(in oklab, var(--color-login-500) 50%, transparent);
2139
2241
  }
2140
2242
  }
2141
- .bg-login-500\/60 {
2142
- background-color: color-mix(in srgb, #323232 60%, transparent);
2143
- @supports (color: color-mix(in lab, red, red)) {
2144
- background-color: color-mix(in oklab, var(--color-login-500) 60%, transparent);
2145
- }
2146
- }
2147
- .bg-login-500\/70 {
2148
- background-color: color-mix(in srgb, #323232 70%, transparent);
2149
- @supports (color: color-mix(in lab, red, red)) {
2150
- background-color: color-mix(in oklab, var(--color-login-500) 70%, transparent);
2151
- }
2152
- }
2153
2243
  .bg-login-600 {
2154
2244
  background-color: var(--color-login-600);
2155
2245
  }
@@ -2174,45 +2264,39 @@
2174
2264
  background-color: color-mix(in oklab, var(--color-login-900) 20%, transparent);
2175
2265
  }
2176
2266
  }
2177
- .bg-login\/70 {
2178
- background-color: color-mix(in srgb, #fd8738 70%, transparent);
2179
- @supports (color: color-mix(in lab, red, red)) {
2180
- background-color: color-mix(in oklab, var(--color-login) 70%, transparent);
2181
- }
2267
+ .bg-login-950 {
2268
+ background-color: var(--color-login-950);
2182
2269
  }
2183
- .bg-orange-500\/10 {
2184
- background-color: color-mix(in srgb, oklch(70.5% 0.213 47.604) 10%, transparent);
2270
+ .bg-login\/10 {
2271
+ background-color: color-mix(in srgb, #fd8738 10%, transparent);
2185
2272
  @supports (color: color-mix(in lab, red, red)) {
2186
- background-color: color-mix(in oklab, var(--color-orange-500) 10%, transparent);
2273
+ background-color: color-mix(in oklab, var(--color-login) 10%, transparent);
2187
2274
  }
2188
2275
  }
2189
- .bg-red-500\/10 {
2190
- background-color: color-mix(in srgb, oklch(63.7% 0.237 25.331) 10%, transparent);
2276
+ .bg-login\/15 {
2277
+ background-color: color-mix(in srgb, #fd8738 15%, transparent);
2191
2278
  @supports (color: color-mix(in lab, red, red)) {
2192
- background-color: color-mix(in oklab, var(--color-red-500) 10%, transparent);
2279
+ background-color: color-mix(in oklab, var(--color-login) 15%, transparent);
2193
2280
  }
2194
2281
  }
2282
+ .bg-red-500 {
2283
+ background-color: var(--color-red-500);
2284
+ }
2195
2285
  .bg-red-500\/20 {
2196
2286
  background-color: color-mix(in srgb, oklch(63.7% 0.237 25.331) 20%, transparent);
2197
2287
  @supports (color: color-mix(in lab, red, red)) {
2198
2288
  background-color: color-mix(in oklab, var(--color-red-500) 20%, transparent);
2199
2289
  }
2200
2290
  }
2201
- .bg-red-600\/70 {
2202
- background-color: color-mix(in srgb, oklch(57.7% 0.245 27.325) 70%, transparent);
2203
- @supports (color: color-mix(in lab, red, red)) {
2204
- background-color: color-mix(in oklab, var(--color-red-600) 70%, transparent);
2205
- }
2291
+ .bg-red-600 {
2292
+ background-color: var(--color-red-600);
2206
2293
  }
2207
- .bg-red-700\/80 {
2208
- background-color: color-mix(in srgb, oklch(50.5% 0.213 27.518) 80%, transparent);
2294
+ .bg-rose-500\/10 {
2295
+ background-color: color-mix(in srgb, oklch(64.5% 0.246 16.439) 10%, transparent);
2209
2296
  @supports (color: color-mix(in lab, red, red)) {
2210
- background-color: color-mix(in oklab, var(--color-red-700) 80%, transparent);
2297
+ background-color: color-mix(in oklab, var(--color-rose-500) 10%, transparent);
2211
2298
  }
2212
2299
  }
2213
- .bg-red-900 {
2214
- background-color: var(--color-red-900);
2215
- }
2216
2300
  .bg-sky-500\/10 {
2217
2301
  background-color: color-mix(in srgb, oklch(68.5% 0.169 237.323) 10%, transparent);
2218
2302
  @supports (color: color-mix(in lab, red, red)) {
@@ -2222,27 +2306,24 @@
2222
2306
  .bg-transparent {
2223
2307
  background-color: transparent;
2224
2308
  }
2309
+ .bg-violet-500\/10 {
2310
+ background-color: color-mix(in srgb, oklch(60.6% 0.25 292.717) 10%, transparent);
2311
+ @supports (color: color-mix(in lab, red, red)) {
2312
+ background-color: color-mix(in oklab, var(--color-violet-500) 10%, transparent);
2313
+ }
2314
+ }
2225
2315
  .bg-white {
2226
2316
  background-color: var(--color-white);
2227
2317
  }
2318
+ .bg-yellow-500 {
2319
+ background-color: var(--color-yellow-500);
2320
+ }
2228
2321
  .bg-yellow-500\/20 {
2229
2322
  background-color: color-mix(in srgb, oklch(79.5% 0.184 86.047) 20%, transparent);
2230
2323
  @supports (color: color-mix(in lab, red, red)) {
2231
2324
  background-color: color-mix(in oklab, var(--color-yellow-500) 20%, transparent);
2232
2325
  }
2233
2326
  }
2234
- .bg-yellow-500\/70 {
2235
- background-color: color-mix(in srgb, oklch(79.5% 0.184 86.047) 70%, transparent);
2236
- @supports (color: color-mix(in lab, red, red)) {
2237
- background-color: color-mix(in oklab, var(--color-yellow-500) 70%, transparent);
2238
- }
2239
- }
2240
- .bg-yellow-600\/80 {
2241
- background-color: color-mix(in srgb, oklch(68.1% 0.162 75.834) 80%, transparent);
2242
- @supports (color: color-mix(in lab, red, red)) {
2243
- background-color: color-mix(in oklab, var(--color-yellow-600) 80%, transparent);
2244
- }
2245
- }
2246
2327
  .bg-linear-to-r {
2247
2328
  --tw-gradient-position: to right;
2248
2329
  @supports (background-image: linear-gradient(in lab, red, red)) {
@@ -2290,12 +2371,12 @@
2290
2371
  .stroke-\[var\(--color-login\)\] {
2291
2372
  stroke: var(--color-login);
2292
2373
  }
2374
+ .stroke-blue-400 {
2375
+ stroke: var(--color-blue-400);
2376
+ }
2293
2377
  .stroke-login {
2294
2378
  stroke: var(--color-login);
2295
2379
  }
2296
- .stroke-login-50 {
2297
- stroke: var(--color-login-50);
2298
- }
2299
2380
  .stroke-login-200 {
2300
2381
  stroke: var(--color-login-200);
2301
2382
  }
@@ -2321,7 +2402,7 @@
2321
2402
  object-fit: cover;
2322
2403
  }
2323
2404
  .p-1 {
2324
- padding: calc(var(--spacing) * 1);
2405
+ padding: var(--spacing);
2325
2406
  }
2326
2407
  .p-1\.5 {
2327
2408
  padding: calc(var(--spacing) * 1.5);
@@ -2341,12 +2422,12 @@
2341
2422
  .p-8 {
2342
2423
  padding: calc(var(--spacing) * 8);
2343
2424
  }
2344
- .p-\[0\.5em_1em_0\.5em_0\.8em\] {
2345
- padding: 0.5em 1em 0.5em 0.8em;
2346
- }
2347
2425
  .px-2 {
2348
2426
  padding-inline: calc(var(--spacing) * 2);
2349
2427
  }
2428
+ .px-2\.5 {
2429
+ padding-inline: calc(var(--spacing) * 2.5);
2430
+ }
2350
2431
  .px-3 {
2351
2432
  padding-inline: calc(var(--spacing) * 3);
2352
2433
  }
@@ -2359,8 +2440,11 @@
2359
2440
  .px-6 {
2360
2441
  padding-inline: calc(var(--spacing) * 6);
2361
2442
  }
2443
+ .py-0\.5 {
2444
+ padding-block: calc(var(--spacing) * 0.5);
2445
+ }
2362
2446
  .py-1 {
2363
- padding-block: calc(var(--spacing) * 1);
2447
+ padding-block: var(--spacing);
2364
2448
  }
2365
2449
  .py-1\.5 {
2366
2450
  padding-block: calc(var(--spacing) * 1.5);
@@ -2392,6 +2476,12 @@
2392
2476
  .pt-4 {
2393
2477
  padding-top: calc(var(--spacing) * 4);
2394
2478
  }
2479
+ .pt-8 {
2480
+ padding-top: calc(var(--spacing) * 8);
2481
+ }
2482
+ .pt-16 {
2483
+ padding-top: calc(var(--spacing) * 16);
2484
+ }
2395
2485
  .pr-3 {
2396
2486
  padding-right: calc(var(--spacing) * 3);
2397
2487
  }
@@ -2407,6 +2497,9 @@
2407
2497
  .pb-4 {
2408
2498
  padding-bottom: calc(var(--spacing) * 4);
2409
2499
  }
2500
+ .pb-24 {
2501
+ padding-bottom: calc(var(--spacing) * 24);
2502
+ }
2410
2503
  .pl-3 {
2411
2504
  padding-left: calc(var(--spacing) * 3);
2412
2505
  }
@@ -2470,8 +2563,8 @@
2470
2563
  font-size: var(--text-xs);
2471
2564
  line-height: var(--tw-leading, var(--text-xs--line-height));
2472
2565
  }
2473
- .text-\[11px\] {
2474
- font-size: 11px;
2566
+ .text-\[10px\] {
2567
+ font-size: 10px;
2475
2568
  }
2476
2569
  .leading-4 {
2477
2570
  --tw-leading: calc(var(--spacing) * 4);
@@ -2513,13 +2606,9 @@
2513
2606
  --tw-font-weight: var(--font-weight-semibold);
2514
2607
  font-weight: var(--font-weight-semibold);
2515
2608
  }
2516
- .tracking-\[0\.05em\] {
2517
- --tw-tracking: 0.05em;
2518
- letter-spacing: 0.05em;
2519
- }
2520
- .tracking-\[0\.18em\] {
2521
- --tw-tracking: 0.18em;
2522
- letter-spacing: 0.18em;
2609
+ .tracking-\[0\.15em\] {
2610
+ --tw-tracking: 0.15em;
2611
+ letter-spacing: 0.15em;
2523
2612
  }
2524
2613
  .tracking-tight {
2525
2614
  --tw-tracking: var(--tracking-tight);
@@ -2529,6 +2618,10 @@
2529
2618
  --tw-tracking: var(--tracking-wider);
2530
2619
  letter-spacing: var(--tracking-wider);
2531
2620
  }
2621
+ .tracking-widest {
2622
+ --tw-tracking: var(--tracking-widest);
2623
+ letter-spacing: var(--tracking-widest);
2624
+ }
2532
2625
  .wrap-break-word {
2533
2626
  overflow-wrap: break-word;
2534
2627
  }
@@ -2538,8 +2631,11 @@
2538
2631
  .whitespace-pre-wrap {
2539
2632
  white-space: pre-wrap;
2540
2633
  }
2541
- .text-amber-200 {
2542
- color: var(--color-amber-200);
2634
+ .text-amber-400 {
2635
+ color: var(--color-amber-400);
2636
+ }
2637
+ .text-black {
2638
+ color: var(--color-black);
2543
2639
  }
2544
2640
  .text-blue-400 {
2545
2641
  color: var(--color-blue-400);
@@ -2547,6 +2643,9 @@
2547
2643
  .text-blue-500 {
2548
2644
  color: var(--color-blue-500);
2549
2645
  }
2646
+ .text-emerald-400 {
2647
+ color: var(--color-emerald-400);
2648
+ }
2550
2649
  .text-gray-400 {
2551
2650
  color: var(--color-gray-400);
2552
2651
  }
@@ -2571,35 +2670,35 @@
2571
2670
  .text-login-200 {
2572
2671
  color: var(--color-login-200);
2573
2672
  }
2673
+ .text-login-300 {
2674
+ color: var(--color-login-300);
2675
+ }
2574
2676
  .text-login-400 {
2575
2677
  color: var(--color-login-400);
2576
2678
  }
2577
2679
  .text-login-800 {
2578
2680
  color: var(--color-login-800);
2579
2681
  }
2580
- .text-login-950 {
2581
- color: var(--color-login-950);
2582
- }
2583
2682
  .text-login-text {
2584
2683
  color: var(--color-login-text);
2585
2684
  }
2586
2685
  .text-login-text\! {
2587
2686
  color: var(--color-login-text) !important;
2588
2687
  }
2589
- .text-orange-200 {
2590
- color: var(--color-orange-200);
2591
- }
2592
- .text-red-200 {
2593
- color: var(--color-red-200);
2594
- }
2595
2688
  .text-red-400 {
2596
2689
  color: var(--color-red-400);
2597
2690
  }
2598
2691
  .text-red-500 {
2599
2692
  color: var(--color-red-500);
2600
2693
  }
2601
- .text-sky-200 {
2602
- color: var(--color-sky-200);
2694
+ .text-rose-400 {
2695
+ color: var(--color-rose-400);
2696
+ }
2697
+ .text-sky-400 {
2698
+ color: var(--color-sky-400);
2699
+ }
2700
+ .text-violet-400 {
2701
+ color: var(--color-violet-400);
2603
2702
  }
2604
2703
  .text-white {
2605
2704
  color: var(--color-white);
@@ -2639,6 +2738,9 @@
2639
2738
  .opacity-0 {
2640
2739
  opacity: 0%;
2641
2740
  }
2741
+ .opacity-40 {
2742
+ opacity: 40%;
2743
+ }
2642
2744
  .opacity-50 {
2643
2745
  opacity: 50%;
2644
2746
  }
@@ -2648,10 +2750,6 @@
2648
2750
  .opacity-100 {
2649
2751
  opacity: 100%;
2650
2752
  }
2651
- .shadow {
2652
- --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
2653
- box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2654
- }
2655
2753
  .shadow-2xl {
2656
2754
  --tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, rgb(0 0 0 / 0.25));
2657
2755
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
@@ -2672,6 +2770,10 @@
2672
2770
  --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
2673
2771
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2674
2772
  }
2773
+ .shadow-xl {
2774
+ --tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 8px 10px -6px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
2775
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2776
+ }
2675
2777
  .ring-1 {
2676
2778
  --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
2677
2779
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
@@ -2682,42 +2784,17 @@
2682
2784
  --tw-ring-color: color-mix(in oklab, var(--color-black) 10%, transparent);
2683
2785
  }
2684
2786
  }
2685
- .ring-red-500 {
2686
- --tw-ring-color: var(--color-red-500);
2687
- }
2688
- .outline {
2689
- outline-style: var(--tw-outline-style);
2690
- outline-width: 1px;
2691
- }
2692
- .outline-blue-600 {
2693
- outline-color: var(--color-blue-600);
2694
- }
2695
- .outline-green-600 {
2696
- outline-color: var(--color-green-600);
2697
- }
2698
- .outline-login {
2699
- outline-color: var(--color-login);
2700
- }
2701
- .outline-login-500 {
2702
- outline-color: var(--color-login-500);
2703
- }
2704
- .outline-login-500\/60 {
2705
- outline-color: color-mix(in srgb, #323232 60%, transparent);
2787
+ .ring-login\/30 {
2788
+ --tw-ring-color: color-mix(in srgb, #fd8738 30%, transparent);
2706
2789
  @supports (color: color-mix(in lab, red, red)) {
2707
- outline-color: color-mix(in oklab, var(--color-login-500) 60%, transparent);
2790
+ --tw-ring-color: color-mix(in oklab, var(--color-login) 30%, transparent);
2708
2791
  }
2709
2792
  }
2710
- .outline-red-600 {
2711
- outline-color: var(--color-red-600);
2712
- }
2713
- .outline-red-700 {
2714
- outline-color: var(--color-red-700);
2715
- }
2716
- .outline-yellow-500 {
2717
- outline-color: var(--color-yellow-500);
2718
- }
2719
- .outline-yellow-600 {
2720
- outline-color: var(--color-yellow-600);
2793
+ .ring-red-500\/60 {
2794
+ --tw-ring-color: color-mix(in srgb, oklch(63.7% 0.237 25.331) 60%, transparent);
2795
+ @supports (color: color-mix(in lab, red, red)) {
2796
+ --tw-ring-color: color-mix(in oklab, var(--color-red-500) 60%, transparent);
2797
+ }
2721
2798
  }
2722
2799
  .backdrop-blur-sm {
2723
2800
  --tw-backdrop-blur: blur(var(--blur-sm));
@@ -2811,6 +2888,13 @@
2811
2888
  line-height: var(--tw-leading, var(--text-xs--line-height)) !important;
2812
2889
  }
2813
2890
  }
2891
+ .group-hover\:opacity-0 {
2892
+ &:is(:where(.group):hover *) {
2893
+ @media (hover: hover) {
2894
+ opacity: 0%;
2895
+ }
2896
+ }
2897
+ }
2814
2898
  .group-hover\:opacity-100 {
2815
2899
  &:is(:where(.group):hover *) {
2816
2900
  @media (hover: hover) {
@@ -2825,7 +2909,7 @@
2825
2909
  }
2826
2910
  .group-\[\.dropdown\]\:p-0 {
2827
2911
  &:is(:where(.group):is(.dropdown) *) {
2828
- padding: calc(var(--spacing) * 0);
2912
+ padding: 0;
2829
2913
  }
2830
2914
  }
2831
2915
  .group-\[\.dropdown\]\:p-2\.5 {
@@ -2845,7 +2929,7 @@
2845
2929
  }
2846
2930
  .group-\[\.dropdown\]\:pl-1 {
2847
2931
  &:is(:where(.group):is(.dropdown) *) {
2848
- padding-left: calc(var(--spacing) * 1);
2932
+ padding-left: var(--spacing);
2849
2933
  }
2850
2934
  }
2851
2935
  .group-\[\.dropdown\]\:pl-4 {
@@ -2982,14 +3066,20 @@
2982
3066
  background-color: var(--color-login);
2983
3067
  }
2984
3068
  }
2985
- .focus-within\:border-login {
3069
+ .focus-within\:border-login\/60 {
2986
3070
  &:focus-within {
2987
- border-color: var(--color-login);
3071
+ border-color: color-mix(in srgb, #fd8738 60%, transparent);
3072
+ @supports (color: color-mix(in lab, red, red)) {
3073
+ border-color: color-mix(in oklab, var(--color-login) 60%, transparent);
3074
+ }
2988
3075
  }
2989
3076
  }
2990
- .focus-within\:border-red-500 {
3077
+ .focus-within\:border-red-500\/70 {
2991
3078
  &:focus-within {
2992
- border-color: var(--color-red-500);
3079
+ border-color: color-mix(in srgb, oklch(63.7% 0.237 25.331) 70%, transparent);
3080
+ @supports (color: color-mix(in lab, red, red)) {
3081
+ border-color: color-mix(in oklab, var(--color-red-500) 70%, transparent);
3082
+ }
2993
3083
  }
2994
3084
  }
2995
3085
  .focus-within\:ring-1 {
@@ -2998,14 +3088,20 @@
2998
3088
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2999
3089
  }
3000
3090
  }
3001
- .focus-within\:ring-login {
3091
+ .focus-within\:ring-login\/30 {
3002
3092
  &:focus-within {
3003
- --tw-ring-color: var(--color-login);
3093
+ --tw-ring-color: color-mix(in srgb, #fd8738 30%, transparent);
3094
+ @supports (color: color-mix(in lab, red, red)) {
3095
+ --tw-ring-color: color-mix(in oklab, var(--color-login) 30%, transparent);
3096
+ }
3004
3097
  }
3005
3098
  }
3006
- .focus-within\:ring-red-500 {
3099
+ .focus-within\:ring-red-500\/30 {
3007
3100
  &:focus-within {
3008
- --tw-ring-color: var(--color-red-500);
3101
+ --tw-ring-color: color-mix(in srgb, oklch(63.7% 0.237 25.331) 30%, transparent);
3102
+ @supports (color: color-mix(in lab, red, red)) {
3103
+ --tw-ring-color: color-mix(in oklab, var(--color-red-500) 30%, transparent);
3104
+ }
3009
3105
  }
3010
3106
  }
3011
3107
  .hover\:scale-110 {
@@ -3018,16 +3114,6 @@
3018
3114
  }
3019
3115
  }
3020
3116
  }
3021
- .hover\:bg-blue-600\/90 {
3022
- &:hover {
3023
- @media (hover: hover) {
3024
- background-color: color-mix(in srgb, oklch(54.6% 0.245 262.881) 90%, transparent);
3025
- @supports (color: color-mix(in lab, red, red)) {
3026
- background-color: color-mix(in oklab, var(--color-blue-600) 90%, transparent);
3027
- }
3028
- }
3029
- }
3030
- }
3031
3117
  .hover\:bg-gray-400\/10 {
3032
3118
  &:hover {
3033
3119
  @media (hover: hover) {
@@ -3038,16 +3124,6 @@
3038
3124
  }
3039
3125
  }
3040
3126
  }
3041
- .hover\:bg-green-600\/90 {
3042
- &:hover {
3043
- @media (hover: hover) {
3044
- background-color: color-mix(in srgb, oklch(62.7% 0.194 149.214) 90%, transparent);
3045
- @supports (color: color-mix(in lab, red, red)) {
3046
- background-color: color-mix(in oklab, var(--color-green-600) 90%, transparent);
3047
- }
3048
- }
3049
- }
3050
- }
3051
3127
  .hover\:bg-login\! {
3052
3128
  &:hover {
3053
3129
  @media (hover: hover) {
@@ -3055,16 +3131,6 @@
3055
3131
  }
3056
3132
  }
3057
3133
  }
3058
- .hover\:bg-login-50\/10 {
3059
- &:hover {
3060
- @media (hover: hover) {
3061
- background-color: color-mix(in srgb, #ededed 10%, transparent);
3062
- @supports (color: color-mix(in lab, red, red)) {
3063
- background-color: color-mix(in oklab, var(--color-login-50) 10%, transparent);
3064
- }
3065
- }
3066
- }
3067
- }
3068
3134
  .hover\:bg-login-300\/20 {
3069
3135
  &:hover {
3070
3136
  @media (hover: hover) {
@@ -3099,16 +3165,6 @@
3099
3165
  }
3100
3166
  }
3101
3167
  }
3102
- .hover\:bg-login-500\/90 {
3103
- &:hover {
3104
- @media (hover: hover) {
3105
- background-color: color-mix(in srgb, #323232 90%, transparent);
3106
- @supports (color: color-mix(in lab, red, red)) {
3107
- background-color: color-mix(in oklab, var(--color-login-500) 90%, transparent);
3108
- }
3109
- }
3110
- }
3111
- }
3112
3168
  .hover\:bg-login-600 {
3113
3169
  &:hover {
3114
3170
  @media (hover: hover) {
@@ -3116,77 +3172,61 @@
3116
3172
  }
3117
3173
  }
3118
3174
  }
3119
- .hover\:bg-login-600\/30 {
3175
+ .hover\:bg-login-600\/70 {
3120
3176
  &:hover {
3121
3177
  @media (hover: hover) {
3122
- background-color: color-mix(in srgb, #212121 30%, transparent);
3178
+ background-color: color-mix(in srgb, #212121 70%, transparent);
3123
3179
  @supports (color: color-mix(in lab, red, red)) {
3124
- background-color: color-mix(in oklab, var(--color-login-600) 30%, transparent);
3180
+ background-color: color-mix(in oklab, var(--color-login-600) 70%, transparent);
3125
3181
  }
3126
3182
  }
3127
3183
  }
3128
3184
  }
3129
- .hover\:bg-login\/80 {
3185
+ .hover\:bg-login-600\/80 {
3130
3186
  &:hover {
3131
3187
  @media (hover: hover) {
3132
- background-color: color-mix(in srgb, #fd8738 80%, transparent);
3188
+ background-color: color-mix(in srgb, #212121 80%, transparent);
3133
3189
  @supports (color: color-mix(in lab, red, red)) {
3134
- background-color: color-mix(in oklab, var(--color-login) 80%, transparent);
3190
+ background-color: color-mix(in oklab, var(--color-login-600) 80%, transparent);
3135
3191
  }
3136
3192
  }
3137
3193
  }
3138
3194
  }
3139
- .hover\:bg-login\/90 {
3195
+ .hover\:bg-login-700 {
3140
3196
  &:hover {
3141
3197
  @media (hover: hover) {
3142
- background-color: color-mix(in srgb, #fd8738 90%, transparent);
3143
- @supports (color: color-mix(in lab, red, red)) {
3144
- background-color: color-mix(in oklab, var(--color-login) 90%, transparent);
3145
- }
3198
+ background-color: var(--color-login-700);
3146
3199
  }
3147
3200
  }
3148
3201
  }
3149
- .hover\:bg-red-600\/90 {
3202
+ .hover\:bg-login\/80 {
3150
3203
  &:hover {
3151
3204
  @media (hover: hover) {
3152
- background-color: color-mix(in srgb, oklch(57.7% 0.245 27.325) 90%, transparent);
3205
+ background-color: color-mix(in srgb, #fd8738 80%, transparent);
3153
3206
  @supports (color: color-mix(in lab, red, red)) {
3154
- background-color: color-mix(in oklab, var(--color-red-600) 90%, transparent);
3207
+ background-color: color-mix(in oklab, var(--color-login) 80%, transparent);
3155
3208
  }
3156
3209
  }
3157
3210
  }
3158
3211
  }
3159
- .hover\:bg-red-700 {
3160
- &:hover {
3161
- @media (hover: hover) {
3162
- background-color: var(--color-red-700);
3163
- }
3164
- }
3165
- }
3166
- .hover\:bg-white\/5 {
3212
+ .hover\:text-\[\#1a7bdd\] {
3167
3213
  &:hover {
3168
3214
  @media (hover: hover) {
3169
- background-color: color-mix(in srgb, #fff 5%, transparent);
3170
- @supports (color: color-mix(in lab, red, red)) {
3171
- background-color: color-mix(in oklab, var(--color-white) 5%, transparent);
3172
- }
3215
+ color: #1a7bdd;
3173
3216
  }
3174
3217
  }
3175
3218
  }
3176
- .hover\:bg-yellow-500\/90 {
3219
+ .hover\:text-\[\#2c87ff\] {
3177
3220
  &:hover {
3178
3221
  @media (hover: hover) {
3179
- background-color: color-mix(in srgb, oklch(79.5% 0.184 86.047) 90%, transparent);
3180
- @supports (color: color-mix(in lab, red, red)) {
3181
- background-color: color-mix(in oklab, var(--color-yellow-500) 90%, transparent);
3182
- }
3222
+ color: #2c87ff;
3183
3223
  }
3184
3224
  }
3185
3225
  }
3186
- .hover\:bg-yellow-600 {
3226
+ .hover\:text-\[\#6571fd\] {
3187
3227
  &:hover {
3188
3228
  @media (hover: hover) {
3189
- background-color: var(--color-yellow-600);
3229
+ color: #6571fd;
3190
3230
  }
3191
3231
  }
3192
3232
  }
@@ -3235,6 +3275,13 @@
3235
3275
  }
3236
3276
  }
3237
3277
  }
3278
+ .hover\:text-red-300 {
3279
+ &:hover {
3280
+ @media (hover: hover) {
3281
+ color: var(--color-red-300);
3282
+ }
3283
+ }
3284
+ }
3238
3285
  .hover\:text-red-400 {
3239
3286
  &:hover {
3240
3287
  @media (hover: hover) {
@@ -3242,44 +3289,57 @@
3242
3289
  }
3243
3290
  }
3244
3291
  }
3245
- .focus\:border-login {
3246
- &:focus {
3247
- border-color: var(--color-login);
3292
+ .hover\:text-white {
3293
+ &:hover {
3294
+ @media (hover: hover) {
3295
+ color: var(--color-white);
3296
+ }
3248
3297
  }
3249
3298
  }
3250
- .focus\:border-red-500 {
3251
- &:focus {
3252
- border-color: var(--color-red-500);
3299
+ .hover\:brightness-110 {
3300
+ &:hover {
3301
+ @media (hover: hover) {
3302
+ --tw-brightness: brightness(110%);
3303
+ filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
3304
+ }
3253
3305
  }
3254
3306
  }
3255
- .focus\:ring-1 {
3307
+ .focus\:border-login\/60 {
3256
3308
  &:focus {
3257
- --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
3258
- box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
3309
+ border-color: color-mix(in srgb, #fd8738 60%, transparent);
3310
+ @supports (color: color-mix(in lab, red, red)) {
3311
+ border-color: color-mix(in oklab, var(--color-login) 60%, transparent);
3312
+ }
3259
3313
  }
3260
3314
  }
3261
- .focus\:ring-2 {
3315
+ .focus\:border-red-500\/70 {
3262
3316
  &:focus {
3263
- --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
3264
- box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
3317
+ border-color: color-mix(in srgb, oklch(63.7% 0.237 25.331) 70%, transparent);
3318
+ @supports (color: color-mix(in lab, red, red)) {
3319
+ border-color: color-mix(in oklab, var(--color-red-500) 70%, transparent);
3320
+ }
3265
3321
  }
3266
3322
  }
3267
- .focus\:ring-login {
3323
+ .focus\:ring-1 {
3268
3324
  &:focus {
3269
- --tw-ring-color: var(--color-login);
3325
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
3326
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
3270
3327
  }
3271
3328
  }
3272
- .focus\:ring-login\/50 {
3329
+ .focus\:ring-login\/30 {
3273
3330
  &:focus {
3274
- --tw-ring-color: color-mix(in srgb, #fd8738 50%, transparent);
3331
+ --tw-ring-color: color-mix(in srgb, #fd8738 30%, transparent);
3275
3332
  @supports (color: color-mix(in lab, red, red)) {
3276
- --tw-ring-color: color-mix(in oklab, var(--color-login) 50%, transparent);
3333
+ --tw-ring-color: color-mix(in oklab, var(--color-login) 30%, transparent);
3277
3334
  }
3278
3335
  }
3279
3336
  }
3280
- .focus\:ring-red-500 {
3337
+ .focus\:ring-red-500\/30 {
3281
3338
  &:focus {
3282
- --tw-ring-color: var(--color-red-500);
3339
+ --tw-ring-color: color-mix(in srgb, oklch(63.7% 0.237 25.331) 30%, transparent);
3340
+ @supports (color: color-mix(in lab, red, red)) {
3341
+ --tw-ring-color: color-mix(in oklab, var(--color-red-500) 30%, transparent);
3342
+ }
3283
3343
  }
3284
3344
  }
3285
3345
  .focus\:outline-none {
@@ -3293,6 +3353,11 @@
3293
3353
  cursor: not-allowed;
3294
3354
  }
3295
3355
  }
3356
+ .disabled\:opacity-40 {
3357
+ &:disabled {
3358
+ opacity: 40%;
3359
+ }
3360
+ }
3296
3361
  .disabled\:opacity-50 {
3297
3362
  &:disabled {
3298
3363
  opacity: 50%;
@@ -3340,7 +3405,7 @@
3340
3405
  }
3341
3406
  .\38 00px\:p-0 {
3342
3407
  @media (width >= 800px) {
3343
- padding: calc(var(--spacing) * 0);
3408
+ padding: 0;
3344
3409
  }
3345
3410
  }
3346
3411
  .\38 00px\:p-4 {
@@ -3348,16 +3413,161 @@
3348
3413
  padding: calc(var(--spacing) * 4);
3349
3414
  }
3350
3415
  }
3416
+ .sm\:max-w-88 {
3417
+ @media (width >= 40rem) {
3418
+ max-width: calc(var(--spacing) * 88);
3419
+ }
3420
+ }
3421
+ .sm\:grid-cols-2 {
3422
+ @media (width >= 40rem) {
3423
+ grid-template-columns: repeat(2, minmax(0, 1fr));
3424
+ }
3425
+ }
3426
+ .sm\:justify-items-end {
3427
+ @media (width >= 40rem) {
3428
+ justify-items: end;
3429
+ }
3430
+ }
3431
+ .sm\:justify-self-center {
3432
+ @media (width >= 40rem) {
3433
+ justify-self: center;
3434
+ }
3435
+ }
3436
+ .sm\:justify-self-end {
3437
+ @media (width >= 40rem) {
3438
+ justify-self: flex-end;
3439
+ }
3440
+ }
3351
3441
  .sm\:px-12 {
3352
3442
  @media (width >= 40rem) {
3353
3443
  padding-inline: calc(var(--spacing) * 12);
3354
3444
  }
3355
3445
  }
3446
+ .md\:col-span-2 {
3447
+ @media (width >= 48rem) {
3448
+ grid-column: span 2 / span 2;
3449
+ }
3450
+ }
3451
+ .md\:col-start-2 {
3452
+ @media (width >= 48rem) {
3453
+ grid-column-start: 2;
3454
+ }
3455
+ }
3456
+ .md\:row-span-2 {
3457
+ @media (width >= 48rem) {
3458
+ grid-row: span 2 / span 2;
3459
+ }
3460
+ }
3461
+ .md\:row-start-1 {
3462
+ @media (width >= 48rem) {
3463
+ grid-row-start: 1;
3464
+ }
3465
+ }
3466
+ .md\:row-start-2 {
3467
+ @media (width >= 48rem) {
3468
+ grid-row-start: 2;
3469
+ }
3470
+ }
3471
+ .md\:row-start-3 {
3472
+ @media (width >= 48rem) {
3473
+ grid-row-start: 3;
3474
+ }
3475
+ }
3476
+ .md\:mt-0 {
3477
+ @media (width >= 48rem) {
3478
+ margin-top: 0;
3479
+ }
3480
+ }
3481
+ .md\:mt-24 {
3482
+ @media (width >= 48rem) {
3483
+ margin-top: calc(var(--spacing) * 24);
3484
+ }
3485
+ }
3486
+ .md\:mt-40 {
3487
+ @media (width >= 48rem) {
3488
+ margin-top: calc(var(--spacing) * 40);
3489
+ }
3490
+ }
3491
+ .md\:grid {
3492
+ @media (width >= 48rem) {
3493
+ display: grid;
3494
+ }
3495
+ }
3496
+ .md\:max-w-72 {
3497
+ @media (width >= 48rem) {
3498
+ max-width: calc(var(--spacing) * 72);
3499
+ }
3500
+ }
3501
+ .md\:max-w-136 {
3502
+ @media (width >= 48rem) {
3503
+ max-width: calc(var(--spacing) * 136);
3504
+ }
3505
+ }
3506
+ .md\:max-w-304 {
3507
+ @media (width >= 48rem) {
3508
+ max-width: calc(var(--spacing) * 304);
3509
+ }
3510
+ }
3511
+ .md\:grid-cols-\[18rem_1fr\] {
3512
+ @media (width >= 48rem) {
3513
+ grid-template-columns: 18rem 1fr;
3514
+ }
3515
+ }
3516
+ .md\:grid-cols-\[auto_min-content\] {
3517
+ @media (width >= 48rem) {
3518
+ grid-template-columns: auto min-content;
3519
+ }
3520
+ }
3521
+ .md\:items-end {
3522
+ @media (width >= 48rem) {
3523
+ align-items: flex-end;
3524
+ }
3525
+ }
3526
+ .md\:gap-0 {
3527
+ @media (width >= 48rem) {
3528
+ gap: 0;
3529
+ }
3530
+ }
3356
3531
  .md\:gap-6 {
3357
3532
  @media (width >= 48rem) {
3358
3533
  gap: calc(var(--spacing) * 6);
3359
3534
  }
3360
3535
  }
3536
+ .md\:gap-8 {
3537
+ @media (width >= 48rem) {
3538
+ gap: calc(var(--spacing) * 8);
3539
+ }
3540
+ }
3541
+ .md\:gap-20 {
3542
+ @media (width >= 48rem) {
3543
+ gap: calc(var(--spacing) * 20);
3544
+ }
3545
+ }
3546
+ .md\:gap-x-12 {
3547
+ @media (width >= 48rem) {
3548
+ column-gap: calc(var(--spacing) * 12);
3549
+ }
3550
+ }
3551
+ .md\:justify-self-end {
3552
+ @media (width >= 48rem) {
3553
+ justify-self: flex-end;
3554
+ }
3555
+ }
3556
+ .md\:px-12 {
3557
+ @media (width >= 48rem) {
3558
+ padding-inline: calc(var(--spacing) * 12);
3559
+ }
3560
+ }
3561
+ .md\:pt-20 {
3562
+ @media (width >= 48rem) {
3563
+ padding-top: calc(var(--spacing) * 20);
3564
+ }
3565
+ }
3566
+ .md\:pb-4 {
3567
+ @media (width >= 48rem) {
3568
+ padding-bottom: calc(var(--spacing) * 4);
3569
+ }
3570
+ }
3361
3571
  .dark\:text-login-100 {
3362
3572
  @media (prefers-color-scheme: dark) {
3363
3573
  color: var(--color-login-100);
@@ -3414,6 +3624,16 @@
3414
3624
  background-color: var(--color-login);
3415
3625
  }
3416
3626
  }
3627
+ .\[\&\>svg\]\:h-4 {
3628
+ &>svg {
3629
+ height: calc(var(--spacing) * 4);
3630
+ }
3631
+ }
3632
+ .\[\&\>svg\]\:w-4 {
3633
+ &>svg {
3634
+ width: calc(var(--spacing) * 4);
3635
+ }
3636
+ }
3417
3637
  }
3418
3638
  :root {
3419
3639
  transition: background 0.4s,
@@ -3453,75 +3673,6 @@
3453
3673
  --color-login-50: #ffffff;
3454
3674
  --color-login-text: #0e0e0e;
3455
3675
  }
3456
- /*!
3457
- Theme: GitHub Dark
3458
- Description: Dark theme as seen on github.com
3459
- Author: github.com
3460
- Maintainer: @Hirse
3461
- Updated: 2021-05-15
3462
-
3463
- Outdated base version: https://github.com/primer/github-syntax-dark
3464
- Current colors taken from GitHub's CSS
3465
- */
3466
- pre code.hljs {
3467
- display: block;
3468
- overflow-x: auto;
3469
- padding: 1em;
3470
- }
3471
- code.hljs {
3472
- padding: 3px 5px;
3473
- }
3474
- .hljs {
3475
- color: #c9d1d9;
3476
- background: #0d1117;
3477
- }
3478
- .hljs-doctag, .hljs-keyword, .hljs-meta .hljs-keyword, .hljs-template-tag, .hljs-template-variable, .hljs-type, .hljs-variable.language_ {
3479
- color: #ff7b72;
3480
- }
3481
- .hljs-title, .hljs-title.class_, .hljs-title.class_.inherited__, .hljs-title.function_ {
3482
- color: #d2a8ff;
3483
- }
3484
- .hljs-attr, .hljs-attribute, .hljs-literal, .hljs-meta, .hljs-number, .hljs-operator, .hljs-variable, .hljs-selector-attr, .hljs-selector-class, .hljs-selector-id {
3485
- color: #79c0ff;
3486
- }
3487
- .hljs-regexp, .hljs-string, .hljs-meta .hljs-string {
3488
- color: #a5d6ff;
3489
- }
3490
- .hljs-built_in, .hljs-symbol {
3491
- color: #ffa657;
3492
- }
3493
- .hljs-comment, .hljs-code, .hljs-formula {
3494
- color: #8b949e;
3495
- }
3496
- .hljs-name, .hljs-quote, .hljs-selector-tag, .hljs-selector-pseudo {
3497
- color: #7ee787;
3498
- }
3499
- .hljs-subst {
3500
- color: #c9d1d9;
3501
- }
3502
- .hljs-section {
3503
- color: #1f6feb;
3504
- font-weight: bold;
3505
- }
3506
- .hljs-bullet {
3507
- color: #f2cc60;
3508
- }
3509
- .hljs-emphasis {
3510
- color: #c9d1d9;
3511
- font-style: italic;
3512
- }
3513
- .hljs-strong {
3514
- color: #c9d1d9;
3515
- font-weight: bold;
3516
- }
3517
- .hljs-addition {
3518
- color: #aff5b4;
3519
- background-color: #033a16;
3520
- }
3521
- .hljs-deletion {
3522
- color: #ffdcd7;
3523
- background-color: #67060c;
3524
- }
3525
3676
  .hljs {
3526
3677
  background: transparent;
3527
3678
  }
@@ -3617,7 +3768,7 @@ input::-ms-clear {
3617
3768
  inherits: false;
3618
3769
  initial-value: 0;
3619
3770
  }
3620
- @property --tw-divide-x-reverse {
3771
+ @property --tw-divide-y-reverse {
3621
3772
  syntax: "*";
3622
3773
  inherits: false;
3623
3774
  initial-value: 0;
@@ -3627,11 +3778,6 @@ input::-ms-clear {
3627
3778
  inherits: false;
3628
3779
  initial-value: solid;
3629
3780
  }
3630
- @property --tw-divide-y-reverse {
3631
- syntax: "*";
3632
- inherits: false;
3633
- initial-value: 0;
3634
- }
3635
3781
  @property --tw-gradient-position {
3636
3782
  syntax: "*";
3637
3783
  inherits: false;
@@ -3751,11 +3897,6 @@ input::-ms-clear {
3751
3897
  inherits: false;
3752
3898
  initial-value: 0 0 #0000;
3753
3899
  }
3754
- @property --tw-outline-style {
3755
- syntax: "*";
3756
- inherits: false;
3757
- initial-value: solid;
3758
- }
3759
3900
  @property --tw-backdrop-blur {
3760
3901
  syntax: "*";
3761
3902
  inherits: false;
@@ -3805,6 +3946,66 @@ input::-ms-clear {
3805
3946
  initial-value: "";
3806
3947
  inherits: false;
3807
3948
  }
3949
+ @property --tw-blur {
3950
+ syntax: "*";
3951
+ inherits: false;
3952
+ }
3953
+ @property --tw-brightness {
3954
+ syntax: "*";
3955
+ inherits: false;
3956
+ }
3957
+ @property --tw-contrast {
3958
+ syntax: "*";
3959
+ inherits: false;
3960
+ }
3961
+ @property --tw-grayscale {
3962
+ syntax: "*";
3963
+ inherits: false;
3964
+ }
3965
+ @property --tw-hue-rotate {
3966
+ syntax: "*";
3967
+ inherits: false;
3968
+ }
3969
+ @property --tw-invert {
3970
+ syntax: "*";
3971
+ inherits: false;
3972
+ }
3973
+ @property --tw-opacity {
3974
+ syntax: "*";
3975
+ inherits: false;
3976
+ }
3977
+ @property --tw-saturate {
3978
+ syntax: "*";
3979
+ inherits: false;
3980
+ }
3981
+ @property --tw-sepia {
3982
+ syntax: "*";
3983
+ inherits: false;
3984
+ }
3985
+ @property --tw-drop-shadow {
3986
+ syntax: "*";
3987
+ inherits: false;
3988
+ }
3989
+ @property --tw-drop-shadow-color {
3990
+ syntax: "*";
3991
+ inherits: false;
3992
+ }
3993
+ @property --tw-drop-shadow-alpha {
3994
+ syntax: "<percentage>";
3995
+ inherits: false;
3996
+ initial-value: 100%;
3997
+ }
3998
+ @property --tw-drop-shadow-size {
3999
+ syntax: "*";
4000
+ inherits: false;
4001
+ }
4002
+ @keyframes ping {
4003
+ 75%,
4004
+ 100% {
4005
+ transform: scale(2);
4006
+ opacity: 0;
4007
+ }
4008
+ }
3808
4009
  @layer properties {
3809
4010
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
3810
4011
  *, ::before, ::after, ::backdrop {
@@ -3820,9 +4021,8 @@ input::-ms-clear {
3820
4021
  --tw-skew-x: initial;
3821
4022
  --tw-skew-y: initial;
3822
4023
  --tw-space-x-reverse: 0;
3823
- --tw-divide-x-reverse: 0;
3824
- --tw-border-style: solid;
3825
4024
  --tw-divide-y-reverse: 0;
4025
+ --tw-border-style: solid;
3826
4026
  --tw-gradient-position: initial;
3827
4027
  --tw-gradient-from: #0000;
3828
4028
  --tw-gradient-via: #0000;
@@ -3849,7 +4049,6 @@ input::-ms-clear {
3849
4049
  --tw-ring-offset-width: 0px;
3850
4050
  --tw-ring-offset-color: #fff;
3851
4051
  --tw-ring-offset-shadow: 0 0 #0000;
3852
- --tw-outline-style: solid;
3853
4052
  --tw-backdrop-blur: initial;
3854
4053
  --tw-backdrop-brightness: initial;
3855
4054
  --tw-backdrop-contrast: initial;
@@ -3862,6 +4061,19 @@ input::-ms-clear {
3862
4061
  --tw-duration: initial;
3863
4062
  --tw-ease: initial;
3864
4063
  --tw-content: "";
4064
+ --tw-blur: initial;
4065
+ --tw-brightness: initial;
4066
+ --tw-contrast: initial;
4067
+ --tw-grayscale: initial;
4068
+ --tw-hue-rotate: initial;
4069
+ --tw-invert: initial;
4070
+ --tw-opacity: initial;
4071
+ --tw-saturate: initial;
4072
+ --tw-sepia: initial;
4073
+ --tw-drop-shadow: initial;
4074
+ --tw-drop-shadow-color: initial;
4075
+ --tw-drop-shadow-alpha: 100%;
4076
+ --tw-drop-shadow-size: initial;
3865
4077
  }
3866
4078
  }
3867
4079
  }