fix: the top padding should be draggable (#2688)

This commit is contained in:
Peng Xiao
2023-06-06 11:12:00 +08:00
committed by GitHub
parent 8f5cd13e78
commit d00d0bd951

View File

@@ -1,3 +1,4 @@
import type { ComplexStyleRule } from '@vanilla-extract/css';
import { globalStyle, style } from '@vanilla-extract/css'; import { globalStyle, style } from '@vanilla-extract/css';
import { breakpoints } from '../../styles/mui-theme'; import { breakpoints } from '../../styles/mui-theme';
@@ -64,8 +65,17 @@ export const mainContainerStyle = style({
}, },
}, },
}, },
'&[data-is-desktop="true"]:before': {
content: '""',
position: 'absolute',
height: '8px',
width: '100%',
top: '-8px',
left: 0,
WebkitAppRegion: 'drag',
},
}, },
}); } as ComplexStyleRule);
export const toolStyle = style({ export const toolStyle = style({
position: 'fixed', position: 'fixed',