Site Health: Improve the appearance of administration email verification box.

Add `max-width` on desktop view and some padding on smaller screens.

Props chetan200891, azaozz, Clorith, afragen.
Fixes #48607.

git-svn-id: https://develop.svn.wordpress.org/trunk@47772 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2020-05-07 21:40:19 +00:00
parent 3d31284c5e
commit 09bcb48557
1 changed files with 5 additions and 0 deletions

View File

@ -159,11 +159,16 @@ p {
.login-action-confirm_admin_email #login {
width: 60vw;
max-width: 650px;
margin-top: -2vh;
}
@media screen and (max-width: 782px) {
.login-action-confirm_admin_email #login {
box-sizing: border-box;
margin-top: 0;
padding-left: 4vw;
padding-right: 4vw;
width: 100vw;
}
}