SidebarNav.module.scss 591 B

1234567891011121314151617181920212223242526
  1. @use '@growi/core-styles/scss/bootstrap/init' as bs;
  2. @use '~/styles/variables' as var;
  3. .grw-sidebar-nav :global {
  4. width: var.$grw-sidebar-nav-width;
  5. border-right : 1px solid var(--bs-border-color);
  6. .grw-sidebar-nav-secondary-container {
  7. position: fixed;
  8. bottom: 1.5rem;
  9. }
  10. }
  11. // == Colors
  12. @include bs.color-mode(light) {
  13. .grw-sidebar-nav :global {
  14. background-color: var(--grw-sidebar-nav-bg, var(--grw-highlight-100));
  15. }
  16. }
  17. @include bs.color-mode(dark) {
  18. .grw-sidebar-nav :global {
  19. background-color: var(--grw-sidebar-nav-bg, var(--grw-highlight-800));
  20. }
  21. }