0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-10 00:40:30 -05:00

🐛 Fix color of email input when inviting members to team

This commit is contained in:
Belén Albeza 2024-02-06 15:01:38 +01:00 committed by Andrey Antukh
parent 79130b4da9
commit d737b9501b
2 changed files with 5 additions and 0 deletions

View file

@ -178,6 +178,7 @@
[:div {:class (stl/css :invitation-row)}
[:& fm/multi-input {:type "email"
:class (stl/css :email-input)
:name :emails
:auto-focus? true
:trim true

View file

@ -724,3 +724,7 @@
@extend .modal-cancel-btn;
}
}
.email-input {
@extend .input-base;
}