json-server 1.0.0-alpha.22 → 1.0.0-alpha.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -18,8 +18,8 @@ Create a `db.json` or `db.json5` file
18
18
  ```json
19
19
  {
20
20
  "posts": [
21
- { "id": "1", "title": "a title" },
22
- { "id": "2", "title": "another title" }
21
+ { "id": "1", "title": "a title", "views": 100 },
22
+ { "id": "2", "title": "another title", "views": 200 }
23
23
  ],
24
24
  "comments": [
25
25
  { "id": "1", "text": "a comment about post 1", "postId": "1" },
@@ -38,8 +38,8 @@ Create a `db.json` or `db.json5` file
38
38
  ```json5
39
39
  {
40
40
  posts: [
41
- { id: '1', title: 'a title' },
42
- { id: '2', title: 'another title' },
41
+ { id: '1', title: 'a title', views: 100 },
42
+ { id: '2', title: 'another title', views: 200 },
43
43
  ],
44
44
  comments: [
45
45
  { id: '1', text: 'a comment about post 1', postId: '1' },
@@ -153,9 +153,9 @@ GET /posts?_sort=id,-views
153
153
  - `x.y.z[i]...`
154
154
 
155
155
  ```
156
- GET /posts?author.name=foo
157
- GET /posts?author.email=foo
158
- GET /posts?tags[0]=foo
156
+ GET /foo?a.b=bar
157
+ GET /foo?x.y_lt=100
158
+ GET /foo?arr[0]=bar
159
159
  ```
160
160
 
161
161
  ### Embed
package/lib/app.js CHANGED
@@ -18,7 +18,7 @@ export function createApp(db, options = {}) {
18
18
  // Create app
19
19
  const app = new App();
20
20
  // Static files
21
- app.use(sirv(join(__dirname, '../public'), { dev: !isProduction }));
21
+ app.use(sirv('public', { dev: !isProduction }));
22
22
  options.static
23
23
  ?.map((path) => (isAbsolute(path) ? path : join(process.cwd(), path)))
24
24
  .forEach((dir) => app.use(sirv(dir, { dev: !isProduction })));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "json-server",
3
- "version": "1.0.0-alpha.22",
3
+ "version": "1.0.0-alpha.23",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "bin": {
@@ -9,21 +9,17 @@
9
9
  "types": "lib",
10
10
  "files": [
11
11
  "lib",
12
- "public",
13
12
  "views"
14
13
  ],
15
14
  "engines": {
16
15
  "node": ">=18.3"
17
16
  },
18
17
  "scripts": {
19
- "css": "tailwindcss -i ./views/input.css -o ./public/output.css",
20
- "watch-ts": "tsx watch src/bin.ts fixtures/db.json",
21
- "watch-css": "npm run css -- --watch",
22
- "dev": "concurrently npm:watch-*",
23
- "build": "rm -rf lib && tsc && npm run css",
24
- "test": "npm run css && node --import tsx/esm --test src/*.test.ts",
18
+ "dev": "tsx watch src/bin.ts fixtures/db.json",
19
+ "build": "rm -rf lib && tsc",
20
+ "test": "node --import tsx/esm --test src/*.test.ts",
25
21
  "lint": "eslint src --ext .ts --ignore-path .gitignore",
26
- "prepare": "husky install",
22
+ "prepare": "husky",
27
23
  "prepublishOnly": "npm run build"
28
24
  },
29
25
  "keywords": [],
@@ -32,15 +28,14 @@
32
28
  "devDependencies": {
33
29
  "@sindresorhus/tsconfig": "^5.0.0",
34
30
  "@tailwindcss/typography": "^0.5.10",
35
- "@types/node": "^20.11.0",
31
+ "@types/node": "^20.11.7",
36
32
  "@typicode/eslint-config": "^1.2.0",
37
33
  "concurrently": "^8.2.2",
38
34
  "get-port": "^7.0.0",
39
- "husky": "^8.0.3",
40
- "tailwindcss": "^3.4.1",
35
+ "husky": "^9.0.6",
41
36
  "tempy": "^3.1.0",
42
37
  "tsx": "^4.7.0",
43
- "type-fest": "^4.9.0",
38
+ "type-fest": "^4.10.1",
44
39
  "typescript": "^5.3.3"
45
40
  },
46
41
  "dependencies": {
package/views/index.html CHANGED
@@ -4,38 +4,94 @@
4
4
  <head>
5
5
  <meta charset="UTF-8" />
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
- <link href="/output.css" rel="stylesheet" />
7
+ <style>
8
+ html {
9
+ font-size: 16px;
10
+ line-height: 1.5;
11
+ background-color: #fff;
12
+ color: #000;
13
+ }
14
+
15
+ body {
16
+ margin: 0 auto;
17
+ max-width: 720px;
18
+ padding: 0 16px;
19
+ font-family: sans-serif;
20
+ }
21
+
22
+ a {
23
+ color: #db2777;
24
+ text-decoration: none;
25
+ }
26
+
27
+ header {
28
+ margin-bottom: 32px;
29
+ padding: 16px 0;
30
+ }
31
+
32
+ nav {
33
+ display: flex;
34
+ justify-content: space-between;
35
+ }
36
+
37
+ nav div a {
38
+ margin-left: 16px;
39
+ }
40
+
41
+ ul {
42
+ margin: 0;
43
+ padding: 0;
44
+ list-style: none;
45
+ }
46
+
47
+ li {
48
+ margin-bottom: 8px;
49
+ }
50
+
51
+ /* Dark mode styles */
52
+ @media (prefers-color-scheme: dark) {
53
+ html {
54
+ background-color: #1e293b;
55
+ color: #fff;
56
+ }
57
+
58
+ a {
59
+
60
+ }
61
+ }
62
+
63
+ </style>
8
64
  </head>
9
65
 
10
- <body class="container mx-auto prose dark:prose-invert dark:bg-slate-900 pt-6 bg-white text-slate-900">
66
+ <body>
11
67
  <header>
12
- <nav class="mx-auto flex items-center justify-between">
68
+ <nav>
13
69
  <strong>JSON Server</strong>
14
- <div class="flex gap-x-6">
15
- <a href="https://github.com/typicode/json-server">
16
- <span class="ml-2">Docs</span>
17
- </a>
18
- <a href="https://github.com/sponsors/typicode" class="text-red-500 font-semibold">
19
- <span class="ml-2">♡ Sponsor</span>
20
- </a>
70
+ <div>
71
+ <a href="https://github.com/typicode/json-server">Docs</a>
72
+ <a href="https://github.com/sponsors/typicode">♡ Sponsor</a>
21
73
  </div>
22
74
  </nav>
23
75
  </header>
24
76
  <main class="my-12">
25
77
  <p class="bg-gradient-to-r from-purple-500 via-pink-500 to-red-500 text-transparent bg-clip-text">✧*。٩(ˊᗜˋ*)و✧*。</p>
26
- <% if (Object.keys(it.data).length === 0) { %>
78
+ <% if (Object.keys(it.data).length===0) { %>
27
79
  <p>No resources found in JSON file</p>
28
80
  <% } %>
29
81
  <% Object.entries(it.data).forEach(function([name]) { %>
30
- <div class="py-1">
31
- <a href="<%= name %>">/<%= name %></a>
32
- <span class="text-gray-500">
33
- <% if (Array.isArray(it.data[name])) { %>
34
- - <%= it.data[name].length %> <%= it.data[name].length > 1 ? 'items' : 'item' %></span>
82
+ <ul>
83
+ <li>
84
+ <a href="<%= name %>">/<%= name %></a>
85
+ <span>
86
+ <% if (Array.isArray(it.data[name])) { %>
87
+ - <%= it.data[name].length %>
88
+ <%= it.data[name].length> 1 ? 'items' : 'item' %>
89
+ </span>
35
90
  <% } %>
36
- </div>
91
+ </li>
92
+ </ul>
37
93
  <% }) %>
38
94
  </main>
39
95
  </body>
40
96
 
41
- </html>
97
+ </html>
package/public/output.css DELETED
@@ -1,1201 +0,0 @@
1
- /*
2
- ! tailwindcss v3.4.1 | MIT License | https://tailwindcss.com
3
- */
4
-
5
- /*
6
- 1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
7
- 2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
8
- */
9
-
10
- *,
11
- ::before,
12
- ::after {
13
- box-sizing: border-box;
14
- /* 1 */
15
- border-width: 0;
16
- /* 2 */
17
- border-style: solid;
18
- /* 2 */
19
- border-color: #e5e7eb;
20
- /* 2 */
21
- }
22
-
23
- ::before,
24
- ::after {
25
- --tw-content: '';
26
- }
27
-
28
- /*
29
- 1. Use a consistent sensible line-height in all browsers.
30
- 2. Prevent adjustments of font size after orientation changes in iOS.
31
- 3. Use a more readable tab size.
32
- 4. Use the user's configured `sans` font-family by default.
33
- 5. Use the user's configured `sans` font-feature-settings by default.
34
- 6. Use the user's configured `sans` font-variation-settings by default.
35
- 7. Disable tap highlights on iOS
36
- */
37
-
38
- html,
39
- :host {
40
- line-height: 1.5;
41
- /* 1 */
42
- -webkit-text-size-adjust: 100%;
43
- /* 2 */
44
- -moz-tab-size: 4;
45
- /* 3 */
46
- -o-tab-size: 4;
47
- tab-size: 4;
48
- /* 3 */
49
- font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
50
- /* 4 */
51
- font-feature-settings: normal;
52
- /* 5 */
53
- font-variation-settings: normal;
54
- /* 6 */
55
- -webkit-tap-highlight-color: transparent;
56
- /* 7 */
57
- }
58
-
59
- /*
60
- 1. Remove the margin in all browsers.
61
- 2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
62
- */
63
-
64
- body {
65
- margin: 0;
66
- /* 1 */
67
- line-height: inherit;
68
- /* 2 */
69
- }
70
-
71
- /*
72
- 1. Add the correct height in Firefox.
73
- 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
74
- 3. Ensure horizontal rules are visible by default.
75
- */
76
-
77
- hr {
78
- height: 0;
79
- /* 1 */
80
- color: inherit;
81
- /* 2 */
82
- border-top-width: 1px;
83
- /* 3 */
84
- }
85
-
86
- /*
87
- Add the correct text decoration in Chrome, Edge, and Safari.
88
- */
89
-
90
- abbr:where([title]) {
91
- -webkit-text-decoration: underline dotted;
92
- text-decoration: underline dotted;
93
- }
94
-
95
- /*
96
- Remove the default font size and weight for headings.
97
- */
98
-
99
- h1,
100
- h2,
101
- h3,
102
- h4,
103
- h5,
104
- h6 {
105
- font-size: inherit;
106
- font-weight: inherit;
107
- }
108
-
109
- /*
110
- Reset links to optimize for opt-in styling instead of opt-out.
111
- */
112
-
113
- a {
114
- color: inherit;
115
- text-decoration: inherit;
116
- }
117
-
118
- /*
119
- Add the correct font weight in Edge and Safari.
120
- */
121
-
122
- b,
123
- strong {
124
- font-weight: bolder;
125
- }
126
-
127
- /*
128
- 1. Use the user's configured `mono` font-family by default.
129
- 2. Use the user's configured `mono` font-feature-settings by default.
130
- 3. Use the user's configured `mono` font-variation-settings by default.
131
- 4. Correct the odd `em` font sizing in all browsers.
132
- */
133
-
134
- code,
135
- kbd,
136
- samp,
137
- pre {
138
- font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
139
- /* 1 */
140
- font-feature-settings: normal;
141
- /* 2 */
142
- font-variation-settings: normal;
143
- /* 3 */
144
- font-size: 1em;
145
- /* 4 */
146
- }
147
-
148
- /*
149
- Add the correct font size in all browsers.
150
- */
151
-
152
- small {
153
- font-size: 80%;
154
- }
155
-
156
- /*
157
- Prevent `sub` and `sup` elements from affecting the line height in all browsers.
158
- */
159
-
160
- sub,
161
- sup {
162
- font-size: 75%;
163
- line-height: 0;
164
- position: relative;
165
- vertical-align: baseline;
166
- }
167
-
168
- sub {
169
- bottom: -0.25em;
170
- }
171
-
172
- sup {
173
- top: -0.5em;
174
- }
175
-
176
- /*
177
- 1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
178
- 2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
179
- 3. Remove gaps between table borders by default.
180
- */
181
-
182
- table {
183
- text-indent: 0;
184
- /* 1 */
185
- border-color: inherit;
186
- /* 2 */
187
- border-collapse: collapse;
188
- /* 3 */
189
- }
190
-
191
- /*
192
- 1. Change the font styles in all browsers.
193
- 2. Remove the margin in Firefox and Safari.
194
- 3. Remove default padding in all browsers.
195
- */
196
-
197
- button,
198
- input,
199
- optgroup,
200
- select,
201
- textarea {
202
- font-family: inherit;
203
- /* 1 */
204
- font-feature-settings: inherit;
205
- /* 1 */
206
- font-variation-settings: inherit;
207
- /* 1 */
208
- font-size: 100%;
209
- /* 1 */
210
- font-weight: inherit;
211
- /* 1 */
212
- line-height: inherit;
213
- /* 1 */
214
- color: inherit;
215
- /* 1 */
216
- margin: 0;
217
- /* 2 */
218
- padding: 0;
219
- /* 3 */
220
- }
221
-
222
- /*
223
- Remove the inheritance of text transform in Edge and Firefox.
224
- */
225
-
226
- button,
227
- select {
228
- text-transform: none;
229
- }
230
-
231
- /*
232
- 1. Correct the inability to style clickable types in iOS and Safari.
233
- 2. Remove default button styles.
234
- */
235
-
236
- button,
237
- [type='button'],
238
- [type='reset'],
239
- [type='submit'] {
240
- -webkit-appearance: button;
241
- /* 1 */
242
- background-color: transparent;
243
- /* 2 */
244
- background-image: none;
245
- /* 2 */
246
- }
247
-
248
- /*
249
- Use the modern Firefox focus style for all focusable elements.
250
- */
251
-
252
- :-moz-focusring {
253
- outline: auto;
254
- }
255
-
256
- /*
257
- Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
258
- */
259
-
260
- :-moz-ui-invalid {
261
- box-shadow: none;
262
- }
263
-
264
- /*
265
- Add the correct vertical alignment in Chrome and Firefox.
266
- */
267
-
268
- progress {
269
- vertical-align: baseline;
270
- }
271
-
272
- /*
273
- Correct the cursor style of increment and decrement buttons in Safari.
274
- */
275
-
276
- ::-webkit-inner-spin-button,
277
- ::-webkit-outer-spin-button {
278
- height: auto;
279
- }
280
-
281
- /*
282
- 1. Correct the odd appearance in Chrome and Safari.
283
- 2. Correct the outline style in Safari.
284
- */
285
-
286
- [type='search'] {
287
- -webkit-appearance: textfield;
288
- /* 1 */
289
- outline-offset: -2px;
290
- /* 2 */
291
- }
292
-
293
- /*
294
- Remove the inner padding in Chrome and Safari on macOS.
295
- */
296
-
297
- ::-webkit-search-decoration {
298
- -webkit-appearance: none;
299
- }
300
-
301
- /*
302
- 1. Correct the inability to style clickable types in iOS and Safari.
303
- 2. Change font properties to `inherit` in Safari.
304
- */
305
-
306
- ::-webkit-file-upload-button {
307
- -webkit-appearance: button;
308
- /* 1 */
309
- font: inherit;
310
- /* 2 */
311
- }
312
-
313
- /*
314
- Add the correct display in Chrome and Safari.
315
- */
316
-
317
- summary {
318
- display: list-item;
319
- }
320
-
321
- /*
322
- Removes the default spacing and border for appropriate elements.
323
- */
324
-
325
- blockquote,
326
- dl,
327
- dd,
328
- h1,
329
- h2,
330
- h3,
331
- h4,
332
- h5,
333
- h6,
334
- hr,
335
- figure,
336
- p,
337
- pre {
338
- margin: 0;
339
- }
340
-
341
- fieldset {
342
- margin: 0;
343
- padding: 0;
344
- }
345
-
346
- legend {
347
- padding: 0;
348
- }
349
-
350
- ol,
351
- ul,
352
- menu {
353
- list-style: none;
354
- margin: 0;
355
- padding: 0;
356
- }
357
-
358
- /*
359
- Reset default styling for dialogs.
360
- */
361
-
362
- dialog {
363
- padding: 0;
364
- }
365
-
366
- /*
367
- Prevent resizing textareas horizontally by default.
368
- */
369
-
370
- textarea {
371
- resize: vertical;
372
- }
373
-
374
- /*
375
- 1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
376
- 2. Set the default placeholder color to the user's configured gray 400 color.
377
- */
378
-
379
- input::-moz-placeholder, textarea::-moz-placeholder {
380
- opacity: 1;
381
- /* 1 */
382
- color: #9ca3af;
383
- /* 2 */
384
- }
385
-
386
- input::placeholder,
387
- textarea::placeholder {
388
- opacity: 1;
389
- /* 1 */
390
- color: #9ca3af;
391
- /* 2 */
392
- }
393
-
394
- /*
395
- Set the default cursor for buttons.
396
- */
397
-
398
- button,
399
- [role="button"] {
400
- cursor: pointer;
401
- }
402
-
403
- /*
404
- Make sure disabled buttons don't get the pointer cursor.
405
- */
406
-
407
- :disabled {
408
- cursor: default;
409
- }
410
-
411
- /*
412
- 1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
413
- 2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
414
- This can trigger a poorly considered lint error in some tools but is included by design.
415
- */
416
-
417
- img,
418
- svg,
419
- video,
420
- canvas,
421
- audio,
422
- iframe,
423
- embed,
424
- object {
425
- display: block;
426
- /* 1 */
427
- vertical-align: middle;
428
- /* 2 */
429
- }
430
-
431
- /*
432
- Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
433
- */
434
-
435
- img,
436
- video {
437
- max-width: 100%;
438
- height: auto;
439
- }
440
-
441
- /* Make elements with the HTML hidden attribute stay hidden by default */
442
-
443
- [hidden] {
444
- display: none;
445
- }
446
-
447
- *, ::before, ::after {
448
- --tw-border-spacing-x: 0;
449
- --tw-border-spacing-y: 0;
450
- --tw-translate-x: 0;
451
- --tw-translate-y: 0;
452
- --tw-rotate: 0;
453
- --tw-skew-x: 0;
454
- --tw-skew-y: 0;
455
- --tw-scale-x: 1;
456
- --tw-scale-y: 1;
457
- --tw-pan-x: ;
458
- --tw-pan-y: ;
459
- --tw-pinch-zoom: ;
460
- --tw-scroll-snap-strictness: proximity;
461
- --tw-gradient-from-position: ;
462
- --tw-gradient-via-position: ;
463
- --tw-gradient-to-position: ;
464
- --tw-ordinal: ;
465
- --tw-slashed-zero: ;
466
- --tw-numeric-figure: ;
467
- --tw-numeric-spacing: ;
468
- --tw-numeric-fraction: ;
469
- --tw-ring-inset: ;
470
- --tw-ring-offset-width: 0px;
471
- --tw-ring-offset-color: #fff;
472
- --tw-ring-color: rgb(59 130 246 / 0.5);
473
- --tw-ring-offset-shadow: 0 0 #0000;
474
- --tw-ring-shadow: 0 0 #0000;
475
- --tw-shadow: 0 0 #0000;
476
- --tw-shadow-colored: 0 0 #0000;
477
- --tw-blur: ;
478
- --tw-brightness: ;
479
- --tw-contrast: ;
480
- --tw-grayscale: ;
481
- --tw-hue-rotate: ;
482
- --tw-invert: ;
483
- --tw-saturate: ;
484
- --tw-sepia: ;
485
- --tw-drop-shadow: ;
486
- --tw-backdrop-blur: ;
487
- --tw-backdrop-brightness: ;
488
- --tw-backdrop-contrast: ;
489
- --tw-backdrop-grayscale: ;
490
- --tw-backdrop-hue-rotate: ;
491
- --tw-backdrop-invert: ;
492
- --tw-backdrop-opacity: ;
493
- --tw-backdrop-saturate: ;
494
- --tw-backdrop-sepia: ;
495
- }
496
-
497
- ::backdrop {
498
- --tw-border-spacing-x: 0;
499
- --tw-border-spacing-y: 0;
500
- --tw-translate-x: 0;
501
- --tw-translate-y: 0;
502
- --tw-rotate: 0;
503
- --tw-skew-x: 0;
504
- --tw-skew-y: 0;
505
- --tw-scale-x: 1;
506
- --tw-scale-y: 1;
507
- --tw-pan-x: ;
508
- --tw-pan-y: ;
509
- --tw-pinch-zoom: ;
510
- --tw-scroll-snap-strictness: proximity;
511
- --tw-gradient-from-position: ;
512
- --tw-gradient-via-position: ;
513
- --tw-gradient-to-position: ;
514
- --tw-ordinal: ;
515
- --tw-slashed-zero: ;
516
- --tw-numeric-figure: ;
517
- --tw-numeric-spacing: ;
518
- --tw-numeric-fraction: ;
519
- --tw-ring-inset: ;
520
- --tw-ring-offset-width: 0px;
521
- --tw-ring-offset-color: #fff;
522
- --tw-ring-color: rgb(59 130 246 / 0.5);
523
- --tw-ring-offset-shadow: 0 0 #0000;
524
- --tw-ring-shadow: 0 0 #0000;
525
- --tw-shadow: 0 0 #0000;
526
- --tw-shadow-colored: 0 0 #0000;
527
- --tw-blur: ;
528
- --tw-brightness: ;
529
- --tw-contrast: ;
530
- --tw-grayscale: ;
531
- --tw-hue-rotate: ;
532
- --tw-invert: ;
533
- --tw-saturate: ;
534
- --tw-sepia: ;
535
- --tw-drop-shadow: ;
536
- --tw-backdrop-blur: ;
537
- --tw-backdrop-brightness: ;
538
- --tw-backdrop-contrast: ;
539
- --tw-backdrop-grayscale: ;
540
- --tw-backdrop-hue-rotate: ;
541
- --tw-backdrop-invert: ;
542
- --tw-backdrop-opacity: ;
543
- --tw-backdrop-saturate: ;
544
- --tw-backdrop-sepia: ;
545
- }
546
-
547
- .container {
548
- width: 100%;
549
- }
550
-
551
- @media (min-width: 640px) {
552
- .container {
553
- max-width: 640px;
554
- }
555
- }
556
-
557
- @media (min-width: 768px) {
558
- .container {
559
- max-width: 768px;
560
- }
561
- }
562
-
563
- @media (min-width: 1024px) {
564
- .container {
565
- max-width: 1024px;
566
- }
567
- }
568
-
569
- @media (min-width: 1280px) {
570
- .container {
571
- max-width: 1280px;
572
- }
573
- }
574
-
575
- @media (min-width: 1536px) {
576
- .container {
577
- max-width: 1536px;
578
- }
579
- }
580
-
581
- .prose {
582
- color: var(--tw-prose-body);
583
- max-width: 65ch;
584
- }
585
-
586
- .prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
587
- margin-top: 1.25em;
588
- margin-bottom: 1.25em;
589
- }
590
-
591
- .prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
592
- color: var(--tw-prose-lead);
593
- font-size: 1.25em;
594
- line-height: 1.6;
595
- margin-top: 1.2em;
596
- margin-bottom: 1.2em;
597
- }
598
-
599
- .prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
600
- color: var(--tw-prose-links);
601
- text-decoration: underline;
602
- font-weight: 500;
603
- }
604
-
605
- .prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
606
- color: var(--tw-prose-bold);
607
- font-weight: 600;
608
- }
609
-
610
- .prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
611
- color: inherit;
612
- }
613
-
614
- .prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
615
- color: inherit;
616
- }
617
-
618
- .prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
619
- color: inherit;
620
- }
621
-
622
- .prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
623
- list-style-type: decimal;
624
- margin-top: 1.25em;
625
- margin-bottom: 1.25em;
626
- padding-left: 1.625em;
627
- }
628
-
629
- .prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
630
- list-style-type: upper-alpha;
631
- }
632
-
633
- .prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
634
- list-style-type: lower-alpha;
635
- }
636
-
637
- .prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
638
- list-style-type: upper-alpha;
639
- }
640
-
641
- .prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
642
- list-style-type: lower-alpha;
643
- }
644
-
645
- .prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
646
- list-style-type: upper-roman;
647
- }
648
-
649
- .prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
650
- list-style-type: lower-roman;
651
- }
652
-
653
- .prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
654
- list-style-type: upper-roman;
655
- }
656
-
657
- .prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
658
- list-style-type: lower-roman;
659
- }
660
-
661
- .prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
662
- list-style-type: decimal;
663
- }
664
-
665
- .prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
666
- list-style-type: disc;
667
- margin-top: 1.25em;
668
- margin-bottom: 1.25em;
669
- padding-left: 1.625em;
670
- }
671
-
672
- .prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
673
- font-weight: 400;
674
- color: var(--tw-prose-counters);
675
- }
676
-
677
- .prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
678
- color: var(--tw-prose-bullets);
679
- }
680
-
681
- .prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
682
- color: var(--tw-prose-headings);
683
- font-weight: 600;
684
- margin-top: 1.25em;
685
- }
686
-
687
- .prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
688
- border-color: var(--tw-prose-hr);
689
- border-top-width: 1px;
690
- margin-top: 3em;
691
- margin-bottom: 3em;
692
- }
693
-
694
- .prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
695
- font-weight: 500;
696
- font-style: italic;
697
- color: var(--tw-prose-quotes);
698
- border-left-width: 0.25rem;
699
- border-left-color: var(--tw-prose-quote-borders);
700
- quotes: "\201C""\201D""\2018""\2019";
701
- margin-top: 1.6em;
702
- margin-bottom: 1.6em;
703
- padding-left: 1em;
704
- }
705
-
706
- .prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
707
- content: open-quote;
708
- }
709
-
710
- .prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
711
- content: close-quote;
712
- }
713
-
714
- .prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
715
- color: var(--tw-prose-headings);
716
- font-weight: 800;
717
- font-size: 2.25em;
718
- margin-top: 0;
719
- margin-bottom: 0.8888889em;
720
- line-height: 1.1111111;
721
- }
722
-
723
- .prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
724
- font-weight: 900;
725
- color: inherit;
726
- }
727
-
728
- .prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
729
- color: var(--tw-prose-headings);
730
- font-weight: 700;
731
- font-size: 1.5em;
732
- margin-top: 2em;
733
- margin-bottom: 1em;
734
- line-height: 1.3333333;
735
- }
736
-
737
- .prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
738
- font-weight: 800;
739
- color: inherit;
740
- }
741
-
742
- .prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
743
- color: var(--tw-prose-headings);
744
- font-weight: 600;
745
- font-size: 1.25em;
746
- margin-top: 1.6em;
747
- margin-bottom: 0.6em;
748
- line-height: 1.6;
749
- }
750
-
751
- .prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
752
- font-weight: 700;
753
- color: inherit;
754
- }
755
-
756
- .prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
757
- color: var(--tw-prose-headings);
758
- font-weight: 600;
759
- margin-top: 1.5em;
760
- margin-bottom: 0.5em;
761
- line-height: 1.5;
762
- }
763
-
764
- .prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
765
- font-weight: 700;
766
- color: inherit;
767
- }
768
-
769
- .prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
770
- margin-top: 2em;
771
- margin-bottom: 2em;
772
- }
773
-
774
- .prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
775
- display: block;
776
- margin-top: 2em;
777
- margin-bottom: 2em;
778
- }
779
-
780
- .prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
781
- font-weight: 500;
782
- font-family: inherit;
783
- color: var(--tw-prose-kbd);
784
- box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);
785
- font-size: 0.875em;
786
- border-radius: 0.3125rem;
787
- padding-top: 0.1875em;
788
- padding-right: 0.375em;
789
- padding-bottom: 0.1875em;
790
- padding-left: 0.375em;
791
- }
792
-
793
- .prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
794
- color: var(--tw-prose-code);
795
- font-weight: 600;
796
- font-size: 0.875em;
797
- }
798
-
799
- .prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
800
- content: "`";
801
- }
802
-
803
- .prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
804
- content: "`";
805
- }
806
-
807
- .prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
808
- color: inherit;
809
- }
810
-
811
- .prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
812
- color: inherit;
813
- }
814
-
815
- .prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
816
- color: inherit;
817
- font-size: 0.875em;
818
- }
819
-
820
- .prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
821
- color: inherit;
822
- font-size: 0.9em;
823
- }
824
-
825
- .prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
826
- color: inherit;
827
- }
828
-
829
- .prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
830
- color: inherit;
831
- }
832
-
833
- .prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
834
- color: inherit;
835
- }
836
-
837
- .prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
838
- color: var(--tw-prose-pre-code);
839
- background-color: var(--tw-prose-pre-bg);
840
- overflow-x: auto;
841
- font-weight: 400;
842
- font-size: 0.875em;
843
- line-height: 1.7142857;
844
- margin-top: 1.7142857em;
845
- margin-bottom: 1.7142857em;
846
- border-radius: 0.375rem;
847
- padding-top: 0.8571429em;
848
- padding-right: 1.1428571em;
849
- padding-bottom: 0.8571429em;
850
- padding-left: 1.1428571em;
851
- }
852
-
853
- .prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
854
- background-color: transparent;
855
- border-width: 0;
856
- border-radius: 0;
857
- padding: 0;
858
- font-weight: inherit;
859
- color: inherit;
860
- font-size: inherit;
861
- font-family: inherit;
862
- line-height: inherit;
863
- }
864
-
865
- .prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
866
- content: none;
867
- }
868
-
869
- .prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
870
- content: none;
871
- }
872
-
873
- .prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
874
- width: 100%;
875
- table-layout: auto;
876
- text-align: left;
877
- margin-top: 2em;
878
- margin-bottom: 2em;
879
- font-size: 0.875em;
880
- line-height: 1.7142857;
881
- }
882
-
883
- .prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
884
- border-bottom-width: 1px;
885
- border-bottom-color: var(--tw-prose-th-borders);
886
- }
887
-
888
- .prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
889
- color: var(--tw-prose-headings);
890
- font-weight: 600;
891
- vertical-align: bottom;
892
- padding-right: 0.5714286em;
893
- padding-bottom: 0.5714286em;
894
- padding-left: 0.5714286em;
895
- }
896
-
897
- .prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
898
- border-bottom-width: 1px;
899
- border-bottom-color: var(--tw-prose-td-borders);
900
- }
901
-
902
- .prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
903
- border-bottom-width: 0;
904
- }
905
-
906
- .prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
907
- vertical-align: baseline;
908
- }
909
-
910
- .prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
911
- border-top-width: 1px;
912
- border-top-color: var(--tw-prose-th-borders);
913
- }
914
-
915
- .prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
916
- vertical-align: top;
917
- }
918
-
919
- .prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
920
- margin-top: 0;
921
- margin-bottom: 0;
922
- }
923
-
924
- .prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
925
- color: var(--tw-prose-captions);
926
- font-size: 0.875em;
927
- line-height: 1.4285714;
928
- margin-top: 0.8571429em;
929
- }
930
-
931
- .prose {
932
- --tw-prose-body: #374151;
933
- --tw-prose-headings: #111827;
934
- --tw-prose-lead: #4b5563;
935
- --tw-prose-links: #111827;
936
- --tw-prose-bold: #111827;
937
- --tw-prose-counters: #6b7280;
938
- --tw-prose-bullets: #d1d5db;
939
- --tw-prose-hr: #e5e7eb;
940
- --tw-prose-quotes: #111827;
941
- --tw-prose-quote-borders: #e5e7eb;
942
- --tw-prose-captions: #6b7280;
943
- --tw-prose-kbd: #111827;
944
- --tw-prose-kbd-shadows: 17 24 39;
945
- --tw-prose-code: #111827;
946
- --tw-prose-pre-code: #e5e7eb;
947
- --tw-prose-pre-bg: #1f2937;
948
- --tw-prose-th-borders: #d1d5db;
949
- --tw-prose-td-borders: #e5e7eb;
950
- --tw-prose-invert-body: #d1d5db;
951
- --tw-prose-invert-headings: #fff;
952
- --tw-prose-invert-lead: #9ca3af;
953
- --tw-prose-invert-links: #fff;
954
- --tw-prose-invert-bold: #fff;
955
- --tw-prose-invert-counters: #9ca3af;
956
- --tw-prose-invert-bullets: #4b5563;
957
- --tw-prose-invert-hr: #374151;
958
- --tw-prose-invert-quotes: #f3f4f6;
959
- --tw-prose-invert-quote-borders: #374151;
960
- --tw-prose-invert-captions: #9ca3af;
961
- --tw-prose-invert-kbd: #fff;
962
- --tw-prose-invert-kbd-shadows: 255 255 255;
963
- --tw-prose-invert-code: #fff;
964
- --tw-prose-invert-pre-code: #d1d5db;
965
- --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
966
- --tw-prose-invert-th-borders: #4b5563;
967
- --tw-prose-invert-td-borders: #374151;
968
- font-size: 1rem;
969
- line-height: 1.75;
970
- }
971
-
972
- .prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
973
- margin-top: 0;
974
- margin-bottom: 0;
975
- }
976
-
977
- .prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
978
- margin-top: 2em;
979
- margin-bottom: 2em;
980
- }
981
-
982
- .prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
983
- margin-top: 0.5em;
984
- margin-bottom: 0.5em;
985
- }
986
-
987
- .prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
988
- padding-left: 0.375em;
989
- }
990
-
991
- .prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
992
- padding-left: 0.375em;
993
- }
994
-
995
- .prose :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
996
- margin-top: 0.75em;
997
- margin-bottom: 0.75em;
998
- }
999
-
1000
- .prose :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1001
- margin-top: 1.25em;
1002
- }
1003
-
1004
- .prose :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1005
- margin-bottom: 1.25em;
1006
- }
1007
-
1008
- .prose :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1009
- margin-top: 1.25em;
1010
- }
1011
-
1012
- .prose :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1013
- margin-bottom: 1.25em;
1014
- }
1015
-
1016
- .prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1017
- margin-top: 0.75em;
1018
- margin-bottom: 0.75em;
1019
- }
1020
-
1021
- .prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1022
- margin-top: 1.25em;
1023
- margin-bottom: 1.25em;
1024
- }
1025
-
1026
- .prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1027
- margin-top: 0.5em;
1028
- padding-left: 1.625em;
1029
- }
1030
-
1031
- .prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1032
- margin-top: 0;
1033
- }
1034
-
1035
- .prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1036
- margin-top: 0;
1037
- }
1038
-
1039
- .prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1040
- margin-top: 0;
1041
- }
1042
-
1043
- .prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1044
- margin-top: 0;
1045
- }
1046
-
1047
- .prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1048
- padding-left: 0;
1049
- }
1050
-
1051
- .prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1052
- padding-right: 0;
1053
- }
1054
-
1055
- .prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1056
- padding-top: 0.5714286em;
1057
- padding-right: 0.5714286em;
1058
- padding-bottom: 0.5714286em;
1059
- padding-left: 0.5714286em;
1060
- }
1061
-
1062
- .prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1063
- padding-left: 0;
1064
- }
1065
-
1066
- .prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1067
- padding-right: 0;
1068
- }
1069
-
1070
- .prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1071
- margin-top: 2em;
1072
- margin-bottom: 2em;
1073
- }
1074
-
1075
- .prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1076
- margin-top: 0;
1077
- }
1078
-
1079
- .prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
1080
- margin-bottom: 0;
1081
- }
1082
-
1083
- .mx-auto {
1084
- margin-left: auto;
1085
- margin-right: auto;
1086
- }
1087
-
1088
- .my-12 {
1089
- margin-top: 3rem;
1090
- margin-bottom: 3rem;
1091
- }
1092
-
1093
- .ml-2 {
1094
- margin-left: 0.5rem;
1095
- }
1096
-
1097
- .flex {
1098
- display: flex;
1099
- }
1100
-
1101
- .items-center {
1102
- align-items: center;
1103
- }
1104
-
1105
- .justify-between {
1106
- justify-content: space-between;
1107
- }
1108
-
1109
- .gap-x-6 {
1110
- -moz-column-gap: 1.5rem;
1111
- column-gap: 1.5rem;
1112
- }
1113
-
1114
- .bg-white {
1115
- --tw-bg-opacity: 1;
1116
- background-color: rgb(255 255 255 / var(--tw-bg-opacity));
1117
- }
1118
-
1119
- .bg-gradient-to-r {
1120
- background-image: linear-gradient(to right, var(--tw-gradient-stops));
1121
- }
1122
-
1123
- .from-purple-500 {
1124
- --tw-gradient-from: #a855f7 var(--tw-gradient-from-position);
1125
- --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
1126
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
1127
- }
1128
-
1129
- .via-pink-500 {
1130
- --tw-gradient-to: rgb(236 72 153 / 0) var(--tw-gradient-to-position);
1131
- --tw-gradient-stops: var(--tw-gradient-from), #ec4899 var(--tw-gradient-via-position), var(--tw-gradient-to);
1132
- }
1133
-
1134
- .to-red-500 {
1135
- --tw-gradient-to: #ef4444 var(--tw-gradient-to-position);
1136
- }
1137
-
1138
- .bg-clip-text {
1139
- -webkit-background-clip: text;
1140
- background-clip: text;
1141
- }
1142
-
1143
- .py-1 {
1144
- padding-top: 0.25rem;
1145
- padding-bottom: 0.25rem;
1146
- }
1147
-
1148
- .pt-6 {
1149
- padding-top: 1.5rem;
1150
- }
1151
-
1152
- .font-semibold {
1153
- font-weight: 600;
1154
- }
1155
-
1156
- .text-gray-500 {
1157
- --tw-text-opacity: 1;
1158
- color: rgb(107 114 128 / var(--tw-text-opacity));
1159
- }
1160
-
1161
- .text-red-500 {
1162
- --tw-text-opacity: 1;
1163
- color: rgb(239 68 68 / var(--tw-text-opacity));
1164
- }
1165
-
1166
- .text-slate-900 {
1167
- --tw-text-opacity: 1;
1168
- color: rgb(15 23 42 / var(--tw-text-opacity));
1169
- }
1170
-
1171
- .text-transparent {
1172
- color: transparent;
1173
- }
1174
-
1175
- @media (prefers-color-scheme: dark) {
1176
- .dark\:prose-invert {
1177
- --tw-prose-body: var(--tw-prose-invert-body);
1178
- --tw-prose-headings: var(--tw-prose-invert-headings);
1179
- --tw-prose-lead: var(--tw-prose-invert-lead);
1180
- --tw-prose-links: var(--tw-prose-invert-links);
1181
- --tw-prose-bold: var(--tw-prose-invert-bold);
1182
- --tw-prose-counters: var(--tw-prose-invert-counters);
1183
- --tw-prose-bullets: var(--tw-prose-invert-bullets);
1184
- --tw-prose-hr: var(--tw-prose-invert-hr);
1185
- --tw-prose-quotes: var(--tw-prose-invert-quotes);
1186
- --tw-prose-quote-borders: var(--tw-prose-invert-quote-borders);
1187
- --tw-prose-captions: var(--tw-prose-invert-captions);
1188
- --tw-prose-kbd: var(--tw-prose-invert-kbd);
1189
- --tw-prose-kbd-shadows: var(--tw-prose-invert-kbd-shadows);
1190
- --tw-prose-code: var(--tw-prose-invert-code);
1191
- --tw-prose-pre-code: var(--tw-prose-invert-pre-code);
1192
- --tw-prose-pre-bg: var(--tw-prose-invert-pre-bg);
1193
- --tw-prose-th-borders: var(--tw-prose-invert-th-borders);
1194
- --tw-prose-td-borders: var(--tw-prose-invert-td-borders);
1195
- }
1196
-
1197
- .dark\:bg-slate-900 {
1198
- --tw-bg-opacity: 1;
1199
- background-color: rgb(15 23 42 / var(--tw-bg-opacity));
1200
- }
1201
- }
package/views/input.css DELETED
@@ -1,3 +0,0 @@
1
- @tailwind base;
2
- @tailwind components;
3
- @tailwind utilities;