19 lines
306 B
Plaintext
19 lines
306 B
Plaintext
// @flow
|
|
|
|
// 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;
|