mirror of
https://github.com/XFox111/MuiCharts.git
synced 2026-04-22 06:51:05 +03:00
24 lines
383 B
TypeScript
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;
|