HEX
Server: nginx/1.18.0
System: Linux test-ipsremont 5.4.0-214-generic #234-Ubuntu SMP Fri Mar 14 23:50:27 UTC 2025 x86_64
User: ips (1000)
PHP: 8.0.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/quadcode-site/src/style/components/scroll-page.scss
.js-partnership-animation {
  &::-webkit-scrollbar {
    width: 0;
    display: none;
  }

  .scroll-page__section {
    background: $primary1;

    &-2 {
      overflow-y: scroll;

      &::-webkit-scrollbar {
        width: 0;
        display: none;
      }

    }
  }
}

.js-sustainability-animation {
  &::-webkit-scrollbar {
    width: 0;
    display: none;
  }

  .scroll-page__section {

    &-2 {
      overflow: auto;

      &::-webkit-scrollbar {
        width: 0;
        display: none;
      }

    }
  }
}

.js-main-animation {
  &::-webkit-scrollbar {
    width: 0;
    display: none;
  }

  .scroll-page__section {

    &-2 {
      overflow: auto;

      &::-webkit-scrollbar {
        width: 0;
        display: none;
      }

    }
  }
}

.js-about-animation {
  &::-webkit-scrollbar {
    width: 0;
    display: none;
  }

  .scroll-page__section {

    &-1 {
      overflow: hidden;
    }

    &-2 {
      overflow: hidden;
    }

    &-3 {
      overflow: auto;

      &::-webkit-scrollbar {
        width: 0;
        display: none;
      }

    }
  }
}

.scroll-page {
  width: 100%;
  height: calc(100vh * 2);
  position: relative;

  @media screen and (max-width: 1200px) {
    height: auto;
  }
}

.scroll-page__section {
  width: 100%;
  height: calc(100vh + 1px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(100vh);
  transition: all .8s cubic-bezier(1, 0.9, 0.9, 1);
  z-index: 0;

  @media screen and (max-width: 1200px) {
    position: unset;
    transform: none;
    height: auto;
  }
}

.scroll-page__section-1 {
  transform: translateY(0);
  z-index: 2;

  @include breakpoint-down('deskS') {
    height: 100vh;
  }
}
.scroll-page__section-2 {
  z-index: 1;
  margin-top: -1px;
}