Skip to content

Commit

Permalink
fix(component): banner should not affect the editor layout
Browse files Browse the repository at this point in the history
  • Loading branch information
fundon committed Apr 17, 2024
1 parent ed96c4e commit 21c976c
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@ export const browserWarningStyle = style({
backgroundColor: cssVar('backgroundWarningColor'),
color: cssVar('warningColor'),
height: '36px',
width: '100%',
fontSize: cssVar('fontSm'),
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
position: 'relative',
position: 'absolute',
zIndex: 1,
});
export const closeButtonStyle = style({
width: '36px',
Expand Down

0 comments on commit 21c976c

Please sign in to comment.