UNPKG
materialuiupgraded
Version:
latest (3.2.0)
3.2.0
Material-UI's workspace package
material-ui.com
mui-org/material-ui
materialuiupgraded
/
packages
/
material-ui
/
src
/
styles
/
zIndex.js
13 lines
(11 loc)
•
260 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
//
We
need
to
centralize
the
zIndex
definitions
as
they
work
//
like
global
values
in
the
browser.
const
zIndex
=
{
mobileStepper:
1000
,
appBar:
1100
,
drawer:
1200
,
modal:
1300
,
snackbar:
1400
,
tooltip:
1500
, }
;
export
default
zIndex;