index.less 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. .n-sidebar-item {
  2. --sidebar-text-color: #777;
  3. --sidebar-selected-color: #e73535;
  4. --sidebar-border-width: 3px;
  5. --sidebar-bg-color: #f6f8fa;
  6. --sidebar-bg-selected-color: #fff;
  7. display: flex;
  8. padding: 30rpx 16rpx;
  9. gap: 10rpx;
  10. align-items: center;
  11. color: var(--sidebar-text-color);
  12. background: var(--sidebar-bg-color);
  13. transition: all linear 0.1s;
  14. &:nth-child(1) {
  15. border-top: 0;
  16. }
  17. &.selected {
  18. background-color: var(--sidebar-bg-selected-color);
  19. color: var(--sidebar-selected-color);
  20. .n-sidebar-item-border {
  21. animation: growup 0.1s;
  22. border-left-color: var(--sidebar-selected);
  23. }
  24. }
  25. &-border {
  26. flex-shrink: 0;
  27. height: 40rpx;
  28. border-radius: 6rpx;
  29. border-left-style: solid;
  30. border-left-width: var(--sidebar-border-width);
  31. border-left-color: transparent;
  32. }
  33. &-content {
  34. font-size: 30rpx;
  35. flex: 1;
  36. text-align: center;
  37. height: 40rpx;
  38. }
  39. @keyframes growup {
  40. 0% {
  41. height: 0px;
  42. }
  43. 60% {
  44. height: 32rpx;
  45. }
  46. 72% {
  47. height: 26rpx;
  48. }
  49. 100% {
  50. height: 40rpx;
  51. }
  52. }
  53. }