I want to disable the display .grid class #3068
-
Is there a way to disable the display .grid class (or at least overwrite it with nothing), I use tailwind with a custom theme, and they use this class for other things (not related to display grid) and I don't want to use a prefix for tailwind (or overwrite their class with !important). From what I read display is not available in theme.extend |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Have you thought about it to use a prefix class for all tailwind classes? |
Beta Was this translation helpful? Give feedback.
-
Or you could disable the whole display classes like this: module.exports = {
corePlugins: {
display: false,
}
} Read more about this here |
Beta Was this translation helpful? Give feedback.
Or you could disable the whole display classes like this:
Read more about this here