Sidebar.less 542 B

123456789101112131415161718192021222324252627282930313233343536
  1. @import "~assets/less/variable";
  2. .sidebar {
  3. width: 64px;
  4. background-color: @body-background;
  5. flex-shrink: 0;
  6. .option {
  7. height: 64px;
  8. text-align: center;
  9. cursor: pointer;
  10. &.active {
  11. background-color: @body-bg;
  12. color: @primary-color;
  13. }
  14. &:hover:not(.active) {
  15. background-color: lighten(@body-bg, 3%);
  16. }
  17. a {
  18. color: inherit;
  19. display: block;
  20. &:focus {
  21. text-decoration: none;
  22. }
  23. }
  24. i {
  25. font-size: 24px;
  26. line-height: 64px;
  27. }
  28. }
  29. }