mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-27 05:33:10 +03:00
fix: blockhub position (#1767)
This commit is contained in:
parent
bd67554f5e
commit
5717d126ee
@ -48,11 +48,15 @@ export const MainContainer = styled('div')(({ theme }) => {
|
||||
export const StyledToolWrapper = styled('div')(({ theme }) => {
|
||||
return {
|
||||
position: 'fixed',
|
||||
right: 'calc((100vw - 640px) * 3 / 19 + 5px)',
|
||||
right: '30px',
|
||||
bottom: '30px',
|
||||
zIndex: theme.zIndex.popover,
|
||||
[theme.breakpoints.down('md')]: {
|
||||
right: '30px',
|
||||
right: 'calc((100vw - 640px) * 3 / 19 + 5px)',
|
||||
},
|
||||
[theme.breakpoints.down('sm')]: {
|
||||
right: '5px',
|
||||
bottom: '5px',
|
||||
},
|
||||
};
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user