index.less 554 B

123456789101112131415161718192021222324252627
  1. @import '../style/var';
  2. .van-index-bar {
  3. &__sidebar {
  4. position: fixed;
  5. top: 50%;
  6. right: 0;
  7. z-index: @index-bar-sidebar-z-index;
  8. display: flex;
  9. flex-direction: column;
  10. text-align: center;
  11. transform: translateY(-50%);
  12. cursor: pointer;
  13. user-select: none;
  14. }
  15. &__index {
  16. padding: 0 @padding-xs 0 @padding-md;
  17. font-weight: @font-weight-bold;
  18. font-size: @index-bar-index-font-size;
  19. line-height: @index-bar-index-line-height;
  20. &--active {
  21. color: @index-bar-index-active-color;
  22. }
  23. }
  24. }