Scrollbar

There are no notes for this item.

<div class="scrollbar-outer-div">
    <div class="scrollbar-inner-div"></div>
</div>
  • Content:
    /*------------------------------------*\
        #SCROLLBAR
    \*------------------------------------*/
    
    ::-webkit-scrollbar {
        width: 15px;
    }
    
    ::-webkit-scrollbar-track {
        background-color: $background-scrollbar;
    }
    
    ::-webkit-scrollbar-thumb {
        border-radius: $radius-default * 2;
        background-color: $background-default;
        box-shadow:
          0 0 0 2px $background-scrollbar inset,
          0 0 0 3px $border-default inset;
    }
    
  • URL: /components/raw/scrollbar/scrollbar.scss
  • Filesystem Path: components/02-atoms/08-scrollbar/scrollbar.scss
  • Size: 429 Bytes