JSFiddle - React, Tailwind, and code Playground

HTML

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

CSS

.box {
        background: red;
        width: 100px;
        height: 200px
    }
    /* Mobile Phones */
    @media screen and (max-width:640px)  {
        .box {
            background: blue;
        }
    }