feat: optimize electron macos header style (#1774)

Co-authored-by: himself65 <himself65@outlook.com>
This commit is contained in:
Peng Xiao
2023-04-03 03:01:22 +08:00
committed by GitHub
parent fa150a93a0
commit e0eecffb2f
31 changed files with 635 additions and 169 deletions
+1 -1
View File
@@ -5,7 +5,6 @@ export const StyledPage = styled('div')<{ resizing?: boolean }>(
return {
cursor: resizing ? 'col-resize' : 'default',
height: '100vh',
backgroundColor: theme.colors.pageBackground,
transition: 'background-color .5s',
display: 'flex',
flexGrow: '1',
@@ -32,6 +31,7 @@ export const MainContainerWrapper = styled('div')(({ theme }) => {
position: 'relative',
maxWidth: '100vw',
overflow: 'auto',
backgroundColor: theme.colors.pageBackground,
};
});