_variables.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. @use 'sass:map';
  2. @use '../../styles/settings';
  3. // VNavigationDrawer
  4. $navigation-drawer-background: rgb(var(--v-theme-surface)) !default;
  5. $navigation-drawer-border-color: settings.$border-color-root !default;
  6. $navigation-drawer-border-radius: map.get(settings.$rounded, '0') !default;
  7. $navigation-drawer-border-style: settings.$border-style-root !default;
  8. $navigation-drawer-border-thin-width: thin !default;
  9. $navigation-drawer-border-width: 0 !default;
  10. $navigation-drawer-color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity)) !default;
  11. $navigation-drawer-content-height: 100% !default;
  12. $navigation-drawer-content-overflow-x: hidden !default;
  13. $navigation-drawer-content-overflow-y: auto !default;
  14. $navigation-drawer-elevation: 0 !default;
  15. $navigation-drawer-height: 100% !default;
  16. $navigation-drawer-img-height: inherit !default;
  17. $navigation-drawer-img-object-fit: cover !default;
  18. $navigation-drawer-img-width: inherit !default;
  19. $navigation-drawer-overflow-scrolling: touch !default;
  20. $navigation-drawer-rounded-border-radius: settings.$border-radius-root !default;
  21. $navigation-drawer-temporary-elevation: 16 !default;
  22. $navigation-drawer-transition-duration: 0.2s !default;
  23. $navigation-drawer-transition-property: box-shadow, transform, visibility, width, height, left, right, top, bottom !default;
  24. $navigation-drawer-transition-timing-function: settings.$standard-easing !default;
  25. $navigation-drawer-scrim-opacity: .2 !default;
  26. // Lists
  27. $navigation-drawer-border: (
  28. $navigation-drawer-border-color,
  29. $navigation-drawer-border-style,
  30. $navigation-drawer-border-width,
  31. $navigation-drawer-border-thin-width
  32. ) !default;
  33. $navigation-drawer-theme: (
  34. $navigation-drawer-background,
  35. $navigation-drawer-color
  36. ) !default;