_sidebar.scss 454 B

123456789101112131415161718192021222324252627
  1. .b-sidebar {
  2. // Sidebar Width
  3. &.sidebar-lg {
  4. width: 30rem;
  5. @include media-breakpoint-down(xs) {
  6. width: 20rem;
  7. }
  8. }
  9. // Fix sidebar close outline
  10. .b-sidebar-header .close {
  11. outline: none;
  12. }
  13. // header (Used in Apps)
  14. .b-sidebar-body {
  15. .content-sidebar-header {
  16. background-color: $light;
  17. }
  18. }
  19. }
  20. // Update sidebar backdrop color
  21. .b-sidebar-backdrop {
  22. background-color: rgba($black, 0.75) !important;
  23. }