_global.sass 651 B

12345678910111213141516171819202122232425
  1. @use '../settings'
  2. @use '../tools'
  3. @include tools.layer('base')
  4. html
  5. font-family: settings.$body-font-family
  6. line-height: settings.$line-height-root
  7. font-size: settings.$font-size-root
  8. overflow-x: hidden
  9. text-rendering: optimizeLegibility
  10. -webkit-font-smoothing: antialiased
  11. -moz-osx-font-smoothing: grayscale
  12. -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
  13. html.overflow-y-hidden
  14. overflow-y: hidden !important
  15. :root
  16. --v-theme-overlay-multiplier: 1
  17. --v-scrollbar-offset: 0px
  18. // iOS Safari hack to allow click events on body
  19. @supports (-webkit-touch-callout: none)
  20. body
  21. cursor: pointer