Skip to content

Commit

Permalink
Site Health: Improve the appearance of administration email verificat…
Browse files Browse the repository at this point in the history
…ion 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
  • Loading branch information
SergeyBiryukov committed May 7, 2020
1 parent 3d31284 commit 09bcb48
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/wp-admin/css/login.css
Expand Up @@ -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;
}
}
Expand Down

0 comments on commit 09bcb48

Please sign in to comment.