variables.scss 857 B

1234567891011121314151617181920212223
  1. // Base
  2. $base--line-height: 1.15;
  3. // Navbar
  4. $navbar--height: 50px;
  5. // Sidebar
  6. $sidebar--width: 230px;
  7. $sidebar--width-fold: 64px;
  8. $sidebar--background-color-dark: #263238;
  9. $sidebar--text-color-dark: #8a979e;
  10. $sidebar--menu-item-height: 48px;
  11. // Content
  12. $content--padding: 15px;
  13. $content--background-color: #f1f4f5;
  14. $content--card-header-height: 60px;
  15. $content--tabs-header-height: 38px;
  16. // Content, 填充整屏高度(非tabs状态) = 整屏高度 - 导航条高度 - aui-content上下内边距高度
  17. $content--fill-height: calc(100vh - #{$navbar--height} - #{$content--padding * 2});
  18. // Content, 填充整屏高度(是tabs状态) = 整屏高度 - 导航条高度 - tabs组件header高度 - tabs组件content上下内边距高度
  19. $content--fill-height-tabs: calc(100vh - #{$navbar--height} - #{$content--tabs-header-height} - #{$content--padding * 2});