index.module.scss 588 B

1234567891011121314151617181920212223242526272829303132
  1. .LeftBar{
  2. padding-top: 20px;
  3. :global{
  4. .leftRow{
  5. cursor: pointer;
  6. width: 100%;
  7. height: 70px;
  8. font-size: 16px;
  9. display: flex;
  10. justify-content: center;
  11. align-items: center;
  12. &>div{
  13. opacity: 0;
  14. }
  15. &:hover{
  16. color: var(--themeColor);
  17. }
  18. }
  19. .active{
  20. background-color: var(--themeColor);
  21. color: #D3B453;
  22. pointer-events: none;
  23. &>div{
  24. opacity: 1;
  25. width: 10px;
  26. height: 10px;
  27. background-color: #D3B453;
  28. border-radius: 50%;
  29. }
  30. }
  31. }
  32. }