@rxdi/ui-kit
Version:
UI Components for building graphql-server website
37 lines (35 loc) • 769 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.defaultModalStyle = void 0;
const lit_html_1 = require("@rxdi/lit-html");
exports.defaultModalStyle = (0, lit_html_1.css) `
.wrapper {
position: absolute;
top: 0;
left: 0;
align-items: center;
justify-content: center;
pointer-events: none;
width: 100%;
height: 100%;
z-index: 1000;
}
.backdrop {
width: 100%;
height: 100%;
top: 0;
left: 0;
position: absolute;
background-color: rgba(0, 0, 0, 0.5);
pointer-events: all;
z-index: 10;
}
.content {
z-index: 20;
position: absolute;
/* width: 100%; */
/* height: 100%; */
pointer-events: all;
}
`;
//# sourceMappingURL=default.css.js.map