File: /var/dev/nowruzgan/ketabkhaneh/src/theme/_popup.scss
router-outlet {
display: none;
}
.primary-outlet {
transition: filter .4s;
&.blur {
filter: blur(5px);
}
}
.popup-outlet {
position: fixed;
inset: 0;
opacity: 0;
z-index: 1;
pointer-events: none;
transition: opacity .4s;
&.active {
opacity: 1;
pointer-events: initial;
}
.back-drop {
position: fixed;
inset: 0;
background-color: rgba(70, 70, 70, .75);
z-index: -1;
}
.page-wrapper {
position: relative;
max-width: 1200px;
height: calc(100vh - 40px);
margin: 20px auto 0 auto;
@media screen and (max-width: 960px) {
height: 100vh;
margin: 0;
}
page {
height: 100%;
// padding: 20px;
background-color: white;
box-sizing: border-box;
overflow-y: scroll;
@media screen and (min-width: 961px) {
border-radius: 3px;
}
.page-content {
width: 100%;
margin: 0;
}
}
}
}