SidebarNav.module.scss 614 B

1234567891011121314151617181920212223242526272829
  1. @use '@growi/core/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. .grw-sidebar-nav :global {
  13. }
  14. @include bs.color-mode(light) {
  15. .grw-sidebar-nav :global {
  16. background-color: var(--grw-sidebar-nav-bg, var(--grw-highlight-100));
  17. }
  18. }
  19. @include bs.color-mode(dark) {
  20. .grw-sidebar-nav :global {
  21. background-color: var(--grw-sidebar-nav-bg, var(--grw-highlight-800));
  22. }
  23. }