Login, Registration: Prevent button misalignment on login screen.

Replace the CSS removed in [50569], which is used to align the login & register buttons.

Props mukesh27, audrasjb.
Reviewed by SergeyBiryukov.
Merges [50577] to the 5.7 branch.
Fixes #52834.



git-svn-id: https://develop.svn.wordpress.org/branches/5.7@50580 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Kelly Choyce-Dwan 2021-03-25 15:31:39 +00:00
parent 3bdec19895
commit ae523ec894

View File

@ -186,6 +186,10 @@ p {
margin-bottom: 0;
}
.login .button-primary {
float: right;
}
.login .reset-pass-submit {
display: flex;
flex-flow: row wrap;
@ -194,6 +198,7 @@ p {
.login .reset-pass-submit .button {
display: inline-block;
float: none;
margin-bottom: 6px;
}