JSFiddle - React, Tailwind, and code Playground
HTML
<button class="red-button">Click Me</button>
CSS
/* CSS rules for Tablet screens*/
@media only screen and (device-width: 768px) and (device-height: 1024px){
.red-button {
width: auto;
background-color: red;
color: blue;
}
}