mirror of https://github.com/zulip/zulip.git
Zocial buttons: Fix overflow of text when internationalized.
Previously, the text in the Google/GitHub auth buttons would overflow in languages like German where text is longer than in English. Fixes #1876.
This commit is contained in:
parent
a4ac09cb8f
commit
357fbfcaa3
|
@ -733,7 +733,8 @@ a.bottom-signup-button {
|
|||
}
|
||||
|
||||
.login-google, .register-google, .login-sso, .login-github {
|
||||
width: 300px;
|
||||
max-width: 100%;
|
||||
min-width: 300px;
|
||||
margin: auto;
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
|
|
|
@ -36,7 +36,7 @@ a.zocial {
|
|||
user-select: none;
|
||||
|
||||
position: relative;
|
||||
|
||||
display: inline-flex;
|
||||
-moz-border-radius: .3em;
|
||||
-webkit-border-radius: .3em;
|
||||
border-radius: .3em;
|
||||
|
|
Loading…
Reference in New Issue