Skip to content

Commit

Permalink
fix(app): Updated margins (#1183)
Browse files Browse the repository at this point in the history
Updated margins
  • Loading branch information
kuck1 authored Mar 25, 2024
1 parent 3283279 commit b369351
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/ui/components/core/SearchBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ const useStyles = createStyles((theme) => ({
'&:hover': {
cursor: 'pointer',
},
marginRight: rem(18),
},
leftIcon: {
color: theme.other.colors.secondary.black,
Expand Down Expand Up @@ -232,7 +233,7 @@ export const SearchBox = ({
const rightIcon =
isLoading || searchLoading ? (
<Group>
<Loader size={32} mr={16} />
<Loader size={32} mr={40} />
</Group>
) : form.values.search?.length > 0 ? (
<Group
Expand Down

0 comments on commit b369351

Please sign in to comment.