feat: make flow editor topbar sticky
This commit is contained in:
10
packages/web/src/components/EditorLayout/style.js
Normal file
10
packages/web/src/components/EditorLayout/style.js
Normal file
@@ -0,0 +1,10 @@
|
||||
import { styled } from '@mui/material/styles';
|
||||
import Stack from '@mui/material/Stack';
|
||||
|
||||
export const TopBar = styled(Stack)(({ theme }) => ({
|
||||
zIndex: theme.zIndex.appBar,
|
||||
position: 'sticky',
|
||||
top: 0,
|
||||
left: 0,
|
||||
right: 0,
|
||||
}));
|
Reference in New Issue
Block a user