responsive.css 228 B

12345678910111213
  1. @media (min-width: 390px) {
  2. mobile {
  3. width: 80%;
  4. height: 50%;
  5. border-radius: 5px;
  6. top: 50%;
  7. left: 50%;
  8. right: auto;
  9. bottom: auto;
  10. margin-right: -50%;
  11. transform: translate(-50%, -50%);
  12. }
  13. }