1234567891011121314151617181920212223242526272829303132333435 |
- :host {
- z-index: 1000;
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- display: flex;
- contain: strict;
- --inset-width: 600px;
- --inset-height: 600px;
- }
- .wrapper {
- flex: 1;
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: rgba(0, 0, 0, 0.15);
- }
- .content {
- box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
- width: var(--inset-width);
- height: var(--inset-height);
- max-height: 100%;
- }
- @media only screen and (max-width: 600px) {
- .content {
- width: 100%;
- height: 100%;
- }
- }
|