Login and Registration: Fix margin for language switcher button on small screens.

This fixes an alignement issue on small screens in the language switcher button displayed on the Login screen.

Follow-up to [52058], [52417].

Props sabernhardt.
Fixes #57617.

Built from https://develop.svn.wordpress.org/trunk@55582


git-svn-id: http://core.svn.wordpress.org/trunk@55094 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
audrasjb
2023-03-22 12:50:18 +00:00
parent 93a4991c01
commit 1b393fbb15
5 changed files with 7 additions and 9 deletions

View File

@@ -438,8 +438,7 @@ input::-ms-reveal {
height: auto;
}
.login .language-switcher .button-primary {
float: none;
.login .language-switcher .button {
margin-bottom: 0;
}
@@ -473,7 +472,7 @@ input::-ms-reveal {
}
@media screen and (max-width: 400px) {
.login .language-switcher .button-primary {
.login .language-switcher .button {
display: block;
margin: 5px auto 0;
}

File diff suppressed because one or more lines are too long

View File

@@ -437,8 +437,7 @@ input::-ms-reveal {
height: auto;
}
.login .language-switcher .button-primary {
float: none;
.login .language-switcher .button {
margin-bottom: 0;
}
@@ -472,7 +471,7 @@ input::-ms-reveal {
}
@media screen and (max-width: 400px) {
.login .language-switcher .button-primary {
.login .language-switcher .button {
display: block;
margin: 5px auto 0;
}

File diff suppressed because one or more lines are too long