Skip to content

Commit

Permalink
Minor UI fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kattylucy committed Dec 13, 2024
1 parent 25e47ff commit 93dc2cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fabric/src/components/FileUpload/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const FormField = styled.input`

const FileDragOverContainer = styled(Stack)<{ $disabled?: boolean; $active: boolean; small?: boolean }>`
position: relative;
height: ${({ small }) => (small ? '44px' : '144px')};
height: ${({ small }) => (small ? '40px' : '144px')};
background-color: #ffffff;
border: 1px solid ${({ theme }) => theme.colors.borderPrimary};
border-radius: ${({ theme }) => theme.radii.input}px;
Expand Down

0 comments on commit 93dc2cf

Please sign in to comment.