0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-22 22:49:01 -05:00

🐛 Fix invite members text on modal button

This commit is contained in:
Eva 2023-02-08 11:57:17 +01:00
parent 9c99d86e08
commit 7f963edf9e
3 changed files with 19 additions and 8 deletions

View file

@ -1,4 +1,8 @@
# CHANGELOG # CHANGELOG
## 1.17.2
### :bug: Bugs fixed
- Fix invite members button text [Taiga #4794](https://tree.taiga.io/project/penpot/issue/4794)
## 1.17.2 ## 1.17.2

View file

@ -1495,10 +1495,6 @@
display: grid; display: grid;
grid-template-columns: 1fr auto; grid-template-columns: 1fr auto;
gap: 8px; gap: 8px;
.btn-large {
overflow: hidden;
text-overflow: ellipsis;
}
.btn-primary { .btn-primary {
max-width: 250px; max-width: 250px;
} }
@ -1587,7 +1583,19 @@
} }
} }
.buttons { .buttons {
margin-top: 12px; margin: 12px 0;
button {
height: auto;
}
input {
white-space: break-spaces;
word-break: break-word;
height: fit-content;
margin: 0;
padding: 5px 10px;
min-height: 40px;
max-height: 90px;
}
} }
} }
} }

View file

@ -196,9 +196,8 @@
:name name :name name
:step 2}))} :step 2}))}
(tr "labels.back")] (tr "labels.back")]
[:div {:title (tr "onboarding.choice.team-up.invite-members-submit")} [:& fm/submit-button
[:& fm/submit-button {:label (tr "onboarding.choice.team-up.invite-members-submit")}]]
{:label (tr "onboarding.choice.team-up.invite-members-submit")}]]]
[:div.skip-action [:div.skip-action
{:on-click on-skip} {:on-click on-skip}
[:div.action (tr "onboarding.choice.team-up.invite-members-skip")]]]] [:div.action (tr "onboarding.choice.team-up.invite-members-skip")]]]]