Home > Back-end >  login screen popup close button showing only of scroll in some small screen device
login screen popup close button showing only of scroll in some small screen device

Time:09-27

This is my Login Screen using based on Screen shot of Login page

CodePudding user response:

try this:

    @media only screen and (max-width: 768px) {
     .login-modal .modal-wrapper {
        overflow:hidden!important
     }}

CodePudding user response:

try increasing the height and also modify the positioning top to lesser value. something like :

    .login-modal{
          height: 60%;
          top: 40%;
          position: absolute;
          display: block;
          border-radius: 20px 20px 0 0;
      }

also try learning bootstrap/ using material modules for css they are usually designed to support multiple viewports

  • Related