@use "mixins";
@use "variables";

// styles for native browser scrollbar
.fwe-scrollbar {
  @include mixins.custom-scrollbar;
}

// styles for js scrollbar (simplebar.js)
/* stylelint-disable */
.simplebar-scrollbar::before {
  background-color: variables.$control-hover;
}

.simplebar-dragging {
  .simplebar-scrollbar::before {
    background-color: variables.$control-active;
  }
}

.simplebar-scrollbar.simplebar-visible:before {
  opacity: 0.8;
}
/* stylelint-enable */
