diff --git a/frontend/src/app/main/ui/dashboard/team.cljs b/frontend/src/app/main/ui/dashboard/team.cljs index 1cb240817c..cbbbb421ec 100644 --- a/frontend/src/app/main/ui/dashboard/team.cljs +++ b/frontend/src/app/main/ui/dashboard/team.cljs @@ -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 diff --git a/frontend/src/app/main/ui/dashboard/team.scss b/frontend/src/app/main/ui/dashboard/team.scss index d528bf00c2..be1f9a6139 100644 --- a/frontend/src/app/main/ui/dashboard/team.scss +++ b/frontend/src/app/main/ui/dashboard/team.scss @@ -724,3 +724,7 @@ @extend .modal-cancel-btn; } } + +.email-input { + @extend .input-base; +}