JSFiddle - React, Tailwind, and code Playground

HTML

<div class="box"></div>

CSS

.box {
    background-color: red;
    width: 100%;
    height: 50px;
}
@media only screen and (max-width: 768px) {
    .box {
        border: 5px solid blue;
    }
}