0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-10 08:50:57 -05:00

🐛 Fix create team name modal width

This commit is contained in:
Eva Marco 2024-02-29 17:00:40 +01:00 committed by Belén Albeza
parent add0bed3ca
commit 6e4075a2e7
2 changed files with 7 additions and 2 deletions

View file

@ -89,7 +89,9 @@
[:div {:class (stl/css :modal-overlay)}
[:div {:class (stl/css :modal-container)}
[:& fm/form {:form form :on-submit on-submit}
[:& fm/form {:form form
:on-submit on-submit
:class (stl/css :team-form)}
[:div {:class (stl/css :modal-header)}
(if team

View file

@ -31,6 +31,10 @@
margin-bottom: $s-24;
}
.team-form {
min-width: $s-400;
}
.group-name-input {
@extend .input-element-label;
label {
@ -44,7 +48,6 @@
input {
@include bodySmallTypography;
margin-top: $s-8;
}
}
}