8 lines
194 B
JavaScript
8 lines
194 B
JavaScript
// @flow
|
|
|
|
/**
|
|
* Z-index for components that are to be rendered like an overlay, to be over
|
|
* everything, such as modal-type of components, or dialogs.
|
|
*/
|
|
export const OVERLAY_Z_INDEX = 1000;
|