@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
16 lines (15 loc) • 365 B
JavaScript
"use client";
//#region packages/@mantine/core/src/core/utils/get-default-z-index/get-default-z-index.ts
const elevations = {
app: 100,
modal: 200,
popover: 300,
overlay: 400,
max: 9999
};
function getDefaultZIndex(level) {
return elevations[level];
}
//#endregion
exports.getDefaultZIndex = getDefaultZIndex;
//# sourceMappingURL=get-default-z-index.cjs.map