mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 15:17:33 +00:00
fix: text buttons overflow in login page (#9637)
# Which Problems Are Solved The text of some of the buttons in the login page overflows in some languages  # How the Problems Are Solved Updated the css to set the overflow to hidden and text-overflow to ellipsis, this is the simplest fix I could come up with, if you have a better alternative feel free to tell me what you would prefer 🙏  # Additional Changes None # Additional Context I couldn't test the following case locally since I had trouble setting up a SMTP provider locally, but the class affected by my change should also target this case, if someone could test it before merging it 🙏:  - Closes #7619 Co-authored-by: Stefan Benz <46600784+stebenz@users.noreply.github.com>
This commit is contained in:
@@ -39,7 +39,9 @@ $lgn-icon-button-line-height: 40px !default;
|
|||||||
padding: $lgn-button-padding;
|
padding: $lgn-button-padding;
|
||||||
border-radius: $lgn-button-border-radius;
|
border-radius: $lgn-button-border-radius;
|
||||||
|
|
||||||
overflow: visible;
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
|
||||||
transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
|
transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
|
||||||
|
|
||||||
&[disabled] {
|
&[disabled] {
|
||||||
|
Reference in New Issue
Block a user