mobile.css 238 B

1234567891011121314151617
  1. /* For most of the mobile devices. */
  2. @media (max-width: 768px) {
  3. .header__logo {
  4. left: 15px;
  5. }
  6. .body__form {
  7. width: 320px;
  8. }
  9. }
  10. /* Galaxy Fold etc. width <= 330 */
  11. @media (max-width: 330px) {
  12. .body__form {
  13. width: 270px;
  14. }
  15. }