@kubit-ui-web/react-components
Version:
Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience
33 lines • 1.12 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.OVERLAY_STYLES = void 0;
const spacings_1 = require("../../foundations/spacings");
const zIndex_1 = require("../../foundations/zIndex");
const variants_1 = require("./variants");
exports.OVERLAY_STYLES = {
[variants_1.OverlayVariantType.DEFAULT]: {
container: {
position: 'fixed',
top: '0',
left: '0',
z_index: zIndex_1.Z_INDEX.OVERLAY,
width: spacings_1.SPACINGS.spacing_100_vw,
height: spacings_1.SPACINGS.spacing_100_vh,
opacity: '0.7',
background_color: '#D9D9D9',
},
},
[variants_1.OverlayVariantType.SECONDARY]: {
container: {
position: 'fixed',
top: '0',
left: '0',
z_index: zIndex_1.Z_INDEX.OVERLAY,
width: spacings_1.SPACINGS.spacing_100_percent,
height: spacings_1.SPACINGS.spacing_100_percent,
opacity: '0.7',
background_color: '#D9D9D9',
},
},
};
//# sourceMappingURL=styles.js.map