Skip to content

Commit b051c4d

Browse files
committed
Tweak padding of collaborator form
1 parent 38a7901 commit b051c4d

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

packages/app/src/app/pages/Sandbox/Editor/Header/Collaborators/AddCollaboratorForm.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export const AddCollaboratorForm = () => {
8080
css={{
8181
position: 'absolute',
8282
top: 0,
83-
right: 0,
83+
right: 8,
8484
}}
8585
/>
8686
</motion.div>

packages/app/src/app/pages/Sandbox/Editor/Header/Collaborators/PermissionSelect.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export const PermissionSelect = ({
3232
...props
3333
}: IPermissionSelectProps) => (
3434
<Menu>
35-
<Menu.Button disabled={disabled} {...props}>
35+
<Menu.Button css={{ paddingRight: 0 }} disabled={disabled} {...props}>
3636
{authToName[selectedValue]} <Icon name="caret" size={8} marginLeft={1} />
3737
</Menu.Button>
3838
<Menu.List>

packages/app/src/app/pages/Sandbox/Editor/Header/Collaborators/UserSearchInput.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ export const UserSearchInput = ({
9494
placeholder: 'Enter name or email address',
9595
})}
9696
autoFocus
97+
spellcheck="false"
9798
/>
9899
</div>
99100

0 commit comments

Comments
 (0)