JSFiddle - React, Tailwind, and code Playground
HTML
<p>Hello there, if this is blue, the responsive css is not working, however if it is red, then it is working!</p>
CSS
body {
color:blue;
}
@media screen and (max-width: 768px) {
body {
color:red;
}
}