1
0
mirror of https://github.com/XFox111/MuiCharts.git synced 2026-04-22 06:51:05 +03:00
Files
MuiCharts/src/App.styles.ts
T
2024-02-18 18:52:05 +00:00

24 lines
383 B
TypeScript

import { makeStyles } from "./Utils/makeStyles";
/**
* Stylesheet for the App component.
*/
const AppStyles = makeStyles(theme => ({
root:
{
display: "flex",
flexFlow: "column",
height: "100%",
userSelect: "none",
},
controls:
{
marginBottom: theme.spacing(4),
display: "flex",
alignItems: "center",
gap: theme.spacing(4),
},
}));
export default AppStyles;