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:
511 bytes
|
Line | |
---|
1 | import { Theme } from '@mui/material/styles';
|
---|
2 | import { listClasses } from '@mui/material/List';
|
---|
3 | //
|
---|
4 | import { paper } from '../../css';
|
---|
5 |
|
---|
6 | // ----------------------------------------------------------------------
|
---|
7 |
|
---|
8 | export function popover(theme: Theme) {
|
---|
9 | return {
|
---|
10 | MuiPopover: {
|
---|
11 | styleOverrides: {
|
---|
12 | paper: {
|
---|
13 | ...paper({ theme, dropdown: true }),
|
---|
14 | [`& .${listClasses.root}`]: {
|
---|
15 | paddingTop: 0,
|
---|
16 | paddingBottom: 0,
|
---|
17 | },
|
---|
18 | },
|
---|
19 | },
|
---|
20 | },
|
---|
21 | };
|
---|
22 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.