-
Beta Was this translation helpful? Give feedback.
Answered by
wongjn
Apr 3, 2025
Replies: 1 comment
-
Wrap the base styles in 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"; |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
weeptao
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Wrap the base styles in
@layer base
. Though at least for those styles pertaining toul
,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: