diff options
Diffstat (limited to 'static')
| -rw-r--r-- | static/src/main.css | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/static/src/main.css b/static/src/main.css index d7ec674..faefb2f 100644 --- a/static/src/main.css +++ b/static/src/main.css | |||
| @@ -1,6 +1,24 @@ | |||
| 1 | @tailwind base; | 1 | @import 'tailwindcss'; |
| 2 | @tailwind components; | 2 | |
| 3 | @tailwind utilities; | 3 | @config '../../tailwind.config.js'; |
| 4 | |||
| 5 | /* | ||
| 6 | The default border color has changed to `currentColor` in Tailwind CSS v4, | ||
| 7 | so we've added these compatibility styles to make sure everything still | ||
| 8 | looks the same as it did with Tailwind CSS v3. | ||
| 9 | |||
| 10 | If we ever want to remove these styles, we need to add an explicit border | ||
| 11 | color utility to any element that depends on these defaults. | ||
| 12 | */ | ||
| 13 | @layer base { | ||
| 14 | *, | ||
| 15 | ::after, | ||
| 16 | ::before, | ||
| 17 | ::backdrop, | ||
| 18 | ::file-selector-button { | ||
| 19 | border-color: var(--color-gray-200, currentColor); | ||
| 20 | } | ||
| 21 | } | ||
| 4 | 22 | ||
| 5 | /* rubik-300 - latin */ | 23 | /* rubik-300 - latin */ |
| 6 | @font-face { | 24 | @font-face { |
