@import '../1-Helpers/variables';
@import '../1-Helpers/functions';
@import '../1-Helpers/mixins';

body {
    font-family: Avenir, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100vw;
    height: 100vh;
    font-size: 14px;
    
    @include themify($themes) {
        color: themed('textColor');
        background-color: themed('backgroundColor')
    }
}



.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;  /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
  
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;
  
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
  
    /* Support for IE. */
    font-feature-settings: 'liga';
}

::-webkit-scrollbar {
    width: 5px;
  
    &-track {
      background: none;
    }
  
    &-thumb {
        border-radius: 100px;
        transition: all 0.6s linear;

        @include themify {
            background-color: themed('scrollbarBackground');
        }
  
        &:hover {
            background-color: $primary-color;
        }
    }
}
