index.scss 477 B

123456789101112131415161718192021222324
  1. .panel-sidebar {
  2. position: fixed;
  3. left: 55px;
  4. display: flex;
  5. flex-direction: column;
  6. justify-content: flex-start;
  7. width: 120px;
  8. height: 100vh;
  9. background: #fbfcfd;
  10. border-right: 1px solid #dddddd;
  11. .sidebar-title {
  12. border-bottom: 1px solid #dddddd;
  13. }
  14. .nav-link {
  15. height: 30px;
  16. padding-left: 17px;
  17. line-height: 30px;
  18. color: #333333;
  19. &.active {
  20. font-weight: 600;
  21. background: #e4e7ea;
  22. }
  23. }
  24. }