Skip to content

Commit

Permalink
refactor(app): borderRadius2 override
Browse files Browse the repository at this point in the history
  • Loading branch information
mjhuff committed Mar 14, 2024
1 parent b882d61 commit 9cbf405
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/src/atoms/CheckboxField/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as React from 'react'
import { css } from 'styled-components'
import { SPACING, TYPOGRAPHY } from '../../ui-style-constants'
import { COLORS } from '../../helix-design-system'
import { COLORS, BORDERS } from '../../helix-design-system'
import { Flex, Box } from '../../primitives'
import { Icon } from '../../icons'
import { ALIGN_CENTER, JUSTIFY_CENTER, SIZE_1 } from '../../styles'
Expand Down Expand Up @@ -128,7 +128,7 @@ export function CheckboxField(props: CheckboxFieldProps): JSX.Element {
<Flex
alignItems={ALIGN_CENTER}
justifyContent={JUSTIFY_CENTER}
borderRadius="2px"
borderRadius={BORDERS.borderRadius2}
backgroundColor={COLORS.grey30}
size={SIZE_1}
>
Expand Down

0 comments on commit 9cbf405

Please sign in to comment.