feat: make flow editor topbar sticky

This commit is contained in:
Kasia
2024-03-07 12:20:22 +01:00
parent 3d6847a3a2
commit 6406f9eb86
3 changed files with 64 additions and 53 deletions

View 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,
}));