Files
automatisch/packages/web/src/components/EditorLayout/style.js
2024-03-07 12:20:22 +01:00

11 lines
234 B
JavaScript

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