Skip to content

Commit

Permalink
fix: set box-sizing to content-box
Browse files Browse the repository at this point in the history
  • Loading branch information
chybisov committed Sep 28, 2022
1 parent 7652aa1 commit 2e1319d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/widget/src/components/AppContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ const RelativeContainer = styled(Box, {
shouldForwardProp: (prop) => prop !== 'variant',
})<{ variant?: WidgetVariant }>(({ theme, variant }) => ({
position: 'relative',
boxSizing: 'content-box',
width: '100%',
minWidth: 375,
maxWidth: 392,
Expand Down

0 comments on commit 2e1319d

Please sign in to comment.