started styling

This commit is contained in:
2024-04-14 21:14:13 +03:00
parent 81742c7ca0
commit d052f68f94
42 changed files with 736 additions and 227 deletions

13
src/common/Spacer.tsx Normal file
View File

@@ -0,0 +1,13 @@
import { Box } from "@mui/material";
export const Spacer = ({ height }: any) => {
return (
<Box
sx={{
height: height,
display: 'flex',
flexShrink: 0
}}
/>
);
};