-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Expand file tree
/
Copy pathindex.css
More file actions
38 lines (32 loc) · 1.06 KB
/
index.css
File metadata and controls
38 lines (32 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
@charset "utf-8";
/* IDE Support
* We recommend Stylelint and Tailwind Extensions for better IDE support.
* @see https://marketplace.visualstudio.com/items?itemName=bradlc.vscode-tailwindcss
* @see https://marketplace.visualstudio.com/items?itemName=stylelint.vscode-stylelint
*/
@import 'tailwindcss';
@import './theme.css';
@import './animations.css';
@import './effects.css';
@import './base.css' layer(utilities);
@import './markdown.css' layer(utilities);
/*
The default border color has changed to `currentColor` in Tailwind CSS v4,
so we've added these compatibility styles to make sure everything still
looks the same as it did with Tailwind CSS v3.
If we ever want to remove these styles, we need to add an explicit border
color utility to any element that depends on these defaults.
*/
@layer base {
:root {
--header-height: calc(var(--spacing, 0.25rem) * 16);
}
*,
::after,
::before,
::backdrop,
::file-selector-button {
border-color: var(--color-gray-200, currentColor);
}
}
@custom-variant aria-current (&[aria-current="page"]);