Skip to content

Unable to overwrite default style issue #17521

Answered by wongjn
weeptao asked this question in Help
Discussion options

You must be logged in to vote

Wrap the base styles in @layer base. Though at least for those styles pertaining to ul, li, they are included within Tailwind's preflight.

If the CSS is not modifiable by you, you could move the utility classes outside any layer:

-@import "tailwindcss";
+@layer theme, base, components, utilities;
+
+@import "tailwindcss/theme.css" layer(theme);
+@import "tailwindcss/preflight.css" layer(base);
+@import "tailwindcss/utilities.css";

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by weeptao
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Help
Labels
None yet
2 participants