index.scss 480 B

12345678910111213141516171819202122232425
  1. @import '../common/abstracts/variable';
  2. @import '../common/abstracts/mixin';
  3. .wot-theme-dark {
  4. @include b(sidebar) {
  5. background: $-dark-background;
  6. @include e(padding){
  7. background: $-dark-background2;
  8. }
  9. }
  10. }
  11. @include b(sidebar) {
  12. display: flex;
  13. flex-direction: column;
  14. overflow-y: auto;
  15. width: $-sidebar-width;
  16. height: $-sidebar-height;
  17. background: $-color-white;
  18. @include e(padding){
  19. flex: 1 1 auto;
  20. background: $-sidebar-bg;
  21. }
  22. }