UNPKG
material-ui-cordova
Version:
latest (1.0.0-beta.22)
1.0.0-beta.22
React components that implement Google's Material Design.
material-ui.com
mui-org/material-ui
material-ui-cordova
/
es
/
styles
/
zIndex.js
18 lines
(15 loc)
•
296 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
Needed
as
the
zIndex
works
with
absolute
values.
const
zIndex
=
{
mobileStepper:
900
,
menu:
1000
,
appBar:
1100
,
drawerOverlay:
1200
,
navDrawer:
1300
,
dialogOverlay:
1400
,
dialog:
1500
,
layer:
2000
,
popover:
2100
,
snackbar:
2900
,
tooltip:
3000
}
;
export
default
zIndex;