Remove CSS overrides for the login page at small screen sizes

Some of these selectors no longer apply, and the one that did just
made the behaviour worse, so they are all no longer required.
This commit is contained in:
Andy Allan 2021-03-04 11:08:11 +00:00
parent 2233edbcfa
commit 18b8780f21

View file

@ -124,26 +124,3 @@ body.small-nav {
} }
} }
} }
@media (max-width: 575.98px) {
/* Rules for the login form */
#login_login input#user_email {
width: 100%;
max-width: 18em;
}
#login_login input#user_password {
width: 100%;
max-width: 18em;
}
#login_login input#openid_url {
width: 100%;
max-width: 18em;
}
#login_openid_buttons td {
padding: 2px;
}
}