JSFiddle - React, Tailwind, and code Playground

by Ishank Dubey

HTML

<div class="holder">     
      <div id="popup" class="popup">            
            <div class="content">
                        some lengthy text
                     </div>
</div></div>

CSS

.holder{        
    width:100%;
    display:block;
}
.popup{
    width:100%;
    height:100vh;
    border-radius: 7px;
    background:red;
   
    padding:6px;
    position:absolute;
   top:0;
  
  
    /* This should be half of the total height of your div */
}

.content{
    
    padding: 28px 26px 33px 25px;
}