mirror of
https://github.com/penpot/penpot.git
synced 2025-01-06 14:50:20 -05:00
🐛 Fix create team name modal width
This commit is contained in:
parent
a873feab3d
commit
77dad81d1a
3 changed files with 10 additions and 1 deletions
|
@ -84,6 +84,9 @@
|
|||
width: var(--input-width, calc(100% - $s-1));
|
||||
min-width: var(--input-min-width);
|
||||
height: var(--input-height, $s-32);
|
||||
input {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.help-icon {
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -31,6 +31,10 @@
|
|||
margin-bottom: $s-24;
|
||||
}
|
||||
|
||||
.team-form {
|
||||
min-width: $s-400;
|
||||
}
|
||||
|
||||
.group-name-input {
|
||||
@extend .input-element-label;
|
||||
label {
|
||||
|
|
Loading…
Reference in a new issue