1
0
Fork 0
mirror of synced 2024-08-18 03:21:29 +12:00

Reduce gap between users in assignment modal

This commit is contained in:
Andrew Kingston 2022-07-29 14:20:35 +01:00
parent 2e20aba8e0
commit c6c1eecef0

View file

@ -3,6 +3,7 @@
ModalContent,
PickerDropdown,
ActionButton,
Layout,
notifications,
} from "@budibase/bbui"
import { roles } from "stores/backend"
@ -79,6 +80,7 @@
onConfirm={() => addData(appData)}
showCloseIcon={false}
>
<Layout noPadding gap="XS">
{#each appData as input, index}
<PickerDropdown
autocomplete
@ -97,7 +99,7 @@
getSecondaryOptionColour={role => RoleUtils.getRoleColour(role._id)}
/>
{/each}
</Layout>
<div>
<ActionButton on:click={addNewInput} icon="Add">Add email</ActionButton>
</div>