I'm currently building a project with NextJS, TailwindCSS and MUI React UI library.
Whenever I try to add a MUI Button to my project it works fine but the color of the button stays White.
When hovering the color returns normal, also when clicking the button still has the ripple effect. but when not hovering it return to the color white.
By removing the tailwind directives from the global css file that I'm importing at the _app.{js,jsx.ts,tsx} file, the button acts normal again But this will also remove TailwindCSS.
is there a way to fix it while keeping the directives? or maybe include tailwind CSS using another method?
UPDATE (15/8/2022)
The MUI Team added support for tailwind CSS now please follow this link for instructions https://mui.com/material-ui/guides/interoperability/#tailwind-css
