VSystemBar.sass 900 B

1234567891011121314151617181920212223242526272829303132
  1. @use '../../styles/tools'
  2. @use './variables' as *
  3. @include tools.layer('components')
  4. .v-system-bar
  5. align-items: center
  6. display: flex
  7. flex: $system-bar-flex
  8. height: $system-bar-height
  9. justify-content: $system-bar-justify-content
  10. max-width: 100%
  11. padding-inline: $system-bar-padding-x
  12. position: relative
  13. text-align: $system-bar-text-align
  14. width: 100%
  15. .v-icon
  16. opacity: $system-bar-icon-opacity
  17. @include tools.elevation($system-bar-elevation)
  18. @include tools.position($system-bar-positions)
  19. @include tools.theme($system-bar-theme...)
  20. @include tools.typography($system-bar-typography...)
  21. &--rounded
  22. @include tools.rounded($system-bar-border-radius)
  23. &--window
  24. height: $system-bar-window-height
  25. &:not(.v-system-bar--absolute)
  26. padding-inline-end: calc(var(--v-scrollbar-offset) + #{$system-bar-padding-x})