I recently started with Create-react-app and TailwindCSS and I wanted to change the background of the whole page. couldn t find a way to style the tag
I tried adding my own style in the index.css file like this
@tailwind base;
@tailwind components;
@tailwind utilities;
body{
background-color: aqua;
}
but still didn t work, seems that it s overriden by tailwinds styles is there some way to style the body tag?