mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
style: invite co workers theming
This commit is contained in:
parent
881fff20c1
commit
ec63ce3b4d
@ -56,7 +56,11 @@ export const MultiInput = ({ label, name, placeholder, setValue, watch }: any) =
|
||||
{label && <label className="mb-2 text-brand-secondary">{label}</label>}
|
||||
<div className="rounded-md border border-brand-base p-2">
|
||||
{watch(name)?.map((tag: any, index: number) => (
|
||||
<button type="button" className="m-1.5 rounded-full bg-slate-300 p-1.5" key={index}>
|
||||
<button
|
||||
type="button"
|
||||
className="m-1.5 rounded-full bg-brand-surface-2 px-3 py-2 "
|
||||
key={index}
|
||||
>
|
||||
{tag.email} <span onClick={() => removeTag(index)}>×</span>
|
||||
</button>
|
||||
))}
|
||||
|
Loading…
Reference in New Issue
Block a user