source: src/theme/overrides/components/css-baseline.tsx@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 1.1 KB
Line 
1import { Theme } from '@mui/material/styles';
2
3// ----------------------------------------------------------------------
4
5export function cssBaseline(theme: Theme) {
6 return {
7 MuiCssBaseline: {
8 styleOverrides: {
9 '*': {
10 boxSizing: 'border-box',
11 },
12 html: {
13 margin: 0,
14 padding: 0,
15 width: '100%',
16 height: '100%',
17 WebkitOverflowScrolling: 'touch',
18 },
19 body: {
20 margin: 0,
21 padding: 0,
22 width: '100%',
23 height: '100%',
24 },
25 '#root, #__next': {
26 width: '100%',
27 height: '100%',
28 },
29 input: {
30 '&[type=number]': {
31 MozAppearance: 'textfield',
32 '&::-webkit-outer-spin-button': {
33 margin: 0,
34 WebkitAppearance: 'none',
35 },
36 '&::-webkit-inner-spin-button': {
37 margin: 0,
38 WebkitAppearance: 'none',
39 },
40 },
41 },
42 img: {
43 maxWidth: '100%',
44 display: 'inline-block',
45 verticalAlign: 'bottom',
46 },
47 },
48 },
49 };
50}
Note: See TracBrowser for help on using the repository browser.