_sidebar.scss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*=========================================================================================
  2. File Name: sidebar.scss
  3. Description: content sidebar specific scss.
  4. ----------------------------------------------------------------------------------------
  5. Item Name: Vuexy - Vuejs, HTML & Laravel Admin Dashboard Template
  6. Author: PIXINVENT
  7. Author URL: http://www.themeforest.net/user/pixinvent
  8. ==========================================================================================*/
  9. // Sidebar base
  10. // ------------------------------
  11. // Base
  12. .sidebar {
  13. position: relative;
  14. width: 100%;
  15. // For desktop only
  16. @include media-breakpoint-up(lg){
  17. // display: table-cell;
  18. vertical-align: top;
  19. // width: $sidebar-width;
  20. }
  21. }
  22. .sidebar-fixed{
  23. position: fixed;
  24. height: 100%;
  25. overflow: scroll;
  26. }
  27. .sidenav-overlay{
  28. position: fixed;
  29. top: 0;
  30. left: 0;
  31. right: 0;
  32. height: 120vh;
  33. background-color: rgba(0,0,0,0.5);
  34. z-index: 997;
  35. display: none;
  36. }
  37. .drag-target {
  38. height: 100%;
  39. width: 40px;
  40. position: fixed;
  41. top: 0;
  42. left:-10px;
  43. z-index: 1036;
  44. }
  45. @include media-breakpoint-up(lg){
  46. .sidebar-left{
  47. float:left;
  48. }
  49. .sidebar-right{
  50. float:right;
  51. }
  52. }