forked from kriasoft/react-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomponents.ts
More file actions
29 lines (27 loc) · 732 Bytes
/
Copy pathcomponents.ts
File metadata and controls
29 lines (27 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* SPDX-FileCopyrightText: 2014-present Kriasoft <hello@kriasoft.com> */
/* SPDX-License-Identifier: MIT */
import type { ThemeOptions } from "@material-ui/core/styles";
/**
* Style overrides for Material UI components.
*/
export const components: ThemeOptions["components"] = {
// https://github.com/mui-org/material-ui/tree/next/packages/material-ui/src/Button
MuiButton: {
styleOverrides: {
contained: {
boxShadow: "none",
"&:hover": {
boxShadow: "none",
},
},
},
},
// https://github.com/mui-org/material-ui/tree/next/packages/material-ui/src/ButtonGroup
MuiButtonGroup: {
styleOverrides: {
root: {
boxShadow: "none",
},
},
},
};