Skip to content

Commit

Permalink
refactor(form-builder): adjust border radius of array items
Browse files Browse the repository at this point in the history
  • Loading branch information
mariuslundgard authored and bjoerge committed Apr 8, 2021
1 parent 9533ebb commit 63782f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export const ItemRow = React.forwardRef(function RegularItem(
} = props

return (
<Root {...rest} border radius={2} padding={1} ref={ref}>
<Root {...rest} border radius={1} padding={1} ref={ref}>
<Flex align="center">
{isSortable && <Box marginRight={1}>{dragHandle}</Box>}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export const ItemRow = React.forwardRef(function ItemRow(
const handleMissingTypeFocus = useCallback(() => onFocus([]), [onFocus])

return (
<Card border radius={2} padding={1} ref={ref}>
<Card border radius={1} padding={1} ref={ref}>
<Flex align="center">
{isSortable && <Box marginRight={1}>{dragHandle}</Box>}

Expand Down

0 comments on commit 63782f8

Please sign in to comment.