@import "~bootstrap/scss/root";

@if($is-sirius) {

  @at-root {

    :root {
      &,
      body {
        @extend .h-100;
      }
    }
  }

  ::-webkit-scrollbar {
    @include size(6px);
  }

  ::-webkit-scrollbar-thumb {
    border-radius: $border-radius-lg;
    background-color: $border-color;
    &:window-inactive {
      visibility: hidden;
    }
  }
}


