-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps-dev): bump tailwindcss from 3.4.17 to 4.0.0 in the css gro…
…up (#3256)
- Loading branch information
1 parent
8098f9a
commit 464bc4c
Showing
5 changed files
with
776 additions
and
742 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,23 @@ | ||
/* static/css/styles.css */ | ||
@import 'tailwindcss'; | ||
|
||
/* noinspection CssInvalidAtRule */ | ||
@tailwind base; | ||
/* noinspection CssInvalidAtRule */ | ||
@tailwind components; | ||
/* noinspection CssInvalidAtRule */ | ||
@tailwind utilities; | ||
@config '../../../../tailwind.config.js'; | ||
|
||
/* | ||
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 { | ||
*, | ||
::after, | ||
::before, | ||
::backdrop, | ||
::file-selector-button { | ||
border-color: var(--color-gray-200, currentColor); | ||
} | ||
} |
Oops, something went wrong.