Skip to content

Commit

Permalink
style: Format code with prettier and standardjs
Browse files Browse the repository at this point in the history
  • Loading branch information
deepsource-autofix[bot] authored Jun 15, 2023
1 parent a8326f7 commit 8f8e138
Showing 1 changed file with 75 additions and 75 deletions.
150 changes: 75 additions & 75 deletions src/hooks/useTheme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -224,81 +224,81 @@ export const useTheme = (): Omit<Theme, "palette"> & CssVarsTheme => {
// },
components: {
...lightComponentsTheme.components,
// MuiButton: {
// styleOverrides: {
// root: {
// borderRadius: "50px",
// textTransform: "none",
// fontWeight: "bold",
// },
// sizeSmall: {
// padding: defaultTheme.spacing(0.5, 1.5),
// },
// },
// },
// MuiButtonBase: {
// styleOverrides: {
// root: {
// userSelect: "auto",
// },
// },
// },
// MuiChip: {
// styleOverrides: {
// root: {
// marginRight: defaultTheme.spacing(0.5),
// marginTop: defaultTheme.spacing(0.5),
// },
// },
// },
// MuiLinearProgress: {
// styleOverrides: {
// root: {
// height: defaultTheme.spacing(0.5),
// },
// },
// },
// MuiLink: {
// defaultProps: {
// color: "inherit",
// },
// },
// MuiPaper: {
// styleOverrides: {
// rounded: {
// borderRadius: defaultTheme.spacing(1.5),
// },
// },
// },
// MuiAccordion: {
// styleOverrides: {
// rounded: {
// "&:before": {
// display: "none",
// },
// "&:not(:last-of-type)": {
// borderBottom: `1px solid ${defaultTheme.palette.divider}`,
// },
// "&:first-of-type": {
// borderTopLeftRadius: defaultTheme.spacing(1.5),
// borderTopRightRadius: defaultTheme.spacing(1.5),
// },
// "&:last-of-type": {
// borderBottomLeftRadius: defaultTheme.spacing(1.5),
// borderBottomRightRadius: defaultTheme.spacing(1.5),
// },
// },
// },
// },
// MuiToggleButton: {
// styleOverrides: {
// root: {
// borderRadius: "50px",
// textTransform: "none",
// fontWeight: "bold",
// },
// },
// },
// MuiButton: {
// styleOverrides: {
// root: {
// borderRadius: "50px",
// textTransform: "none",
// fontWeight: "bold",
// },
// sizeSmall: {
// padding: defaultTheme.spacing(0.5, 1.5),
// },
// },
// },
// MuiButtonBase: {
// styleOverrides: {
// root: {
// userSelect: "auto",
// },
// },
// },
// MuiChip: {
// styleOverrides: {
// root: {
// marginRight: defaultTheme.spacing(0.5),
// marginTop: defaultTheme.spacing(0.5),
// },
// },
// },
// MuiLinearProgress: {
// styleOverrides: {
// root: {
// height: defaultTheme.spacing(0.5),
// },
// },
// },
// MuiLink: {
// defaultProps: {
// color: "inherit",
// },
// },
// MuiPaper: {
// styleOverrides: {
// rounded: {
// borderRadius: defaultTheme.spacing(1.5),
// },
// },
// },
// MuiAccordion: {
// styleOverrides: {
// rounded: {
// "&:before": {
// display: "none",
// },
// "&:not(:last-of-type)": {
// borderBottom: `1px solid ${defaultTheme.palette.divider}`,
// },
// "&:first-of-type": {
// borderTopLeftRadius: defaultTheme.spacing(1.5),
// borderTopRightRadius: defaultTheme.spacing(1.5),
// },
// "&:last-of-type": {
// borderBottomLeftRadius: defaultTheme.spacing(1.5),
// borderBottomRightRadius: defaultTheme.spacing(1.5),
// },
// },
// },
// },
// MuiToggleButton: {
// styleOverrides: {
// root: {
// borderRadius: "50px",
// textTransform: "none",
// fontWeight: "bold",
// },
// },
// },
},
});
}, [darkTheme.palette, lightComponentsTheme.components, lightTheme.palette]);
Expand Down

0 comments on commit 8f8e138

Please sign in to comment.