index.less 724 B

1234567891011121314151617181920212223242526272829303132333435
  1. .cat-button-back {
  2. z-index: 1000;
  3. left: 10rpx;
  4. &.fixed {
  5. .cat-icon {
  6. &::before {
  7. font-size: 32rpx;
  8. background-color: rgba(0, 0, 0, .5);
  9. border-radius: 50%;
  10. padding: 16rpx;
  11. }
  12. &.dark::before {
  13. background-color: rgba(255, 255, 255, .75)
  14. }
  15. }
  16. }
  17. .cat-icon {
  18. color: #fff;
  19. width: var(--navigationBarHeight);
  20. height: var(--navigationBarHeight);
  21. &::before {
  22. content: var(--icon-arrow-left);
  23. font-size: 40rpx;
  24. font-weight: bold;
  25. }
  26. &.dark {
  27. color: #333;
  28. }
  29. }
  30. }