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/innodrive/src/scss/elements/back-to-top.scss
.b2top-button {
  opacity: 0;
  position: fixed;
  bottom: 60px;
  right: 60px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  //background: radial-gradient(circle at 50%, #fff 50%, #fff 60%, transparent 60%, transparent 100%);
  background-color: $color-primary-blue;
  cursor: pointer;
  transition: opacity 0.3s linear;
  pointer-events: none;
  z-index: 10;

  svg.icon {
    width: 40%;
    height: 40%;
    fill: #fff;
    transform: rotate(180deg);
  }

  &.js-visible {
    opacity: 1;
    pointer-events: all;
  }
}

@include media("tablet-l") {
  .b2top-button {
    width: 40px;
    height: 40px;
    right: 20px;
    bottom: 40px;
  }
}

@include media("tablet-s") {
  .b2top-button {
    width: 28px;
    height: 28px;
    right: 10px;
    bottom: 28px;
  }
}