HEX
Server: nginx/1.24.0
System: Linux nowruzgan 6.8.0-57-generic #59-Ubuntu SMP PREEMPT_DYNAMIC Sat Mar 15 17:40:59 UTC 2025 x86_64
User: babak (1000)
PHP: 8.3.6
Disabled: NONE
Upload Files
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;
      }
    }
  }
}