JSFiddle - React, Tailwind, and code Playground

by Vitorino fernandes

HTML

<div>Please Rotate your device</div>

CSS

div {
    background:Red;
    top:50px;
    margin:0 auto;
    text-align:center;
    color:white;
    display:none;
}

/* Smartphones (portrait) ----------- */
@media only screen 
and (max-width : 320px) {
      div{display:block}
}