Skip to content

Commit

Permalink
style: fix widget-wrapper width
Browse files Browse the repository at this point in the history
  • Loading branch information
dennyscode committed Jun 26, 2024
1 parent f5d857e commit 37be080
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Widgets/Widget.style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export interface WidgetWrapperProps extends Omit<BoxProps, 'component'> {
export const WidgetWrapper = styled(Box, {
shouldForwardProp: (prop) => prop !== 'welcomeScreenClosed',
})<WidgetWrapperProps>(({ theme, welcomeScreenClosed }) => ({
width: 'auto', //'100%',
width: '100%',
position: 'relative',
margin: theme.spacing(0, 'auto'),
...(!welcomeScreenClosed && {
Expand Down

0 comments on commit 37be080

Please sign in to comment.