side-bar.wxss 541 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .t-float-left {
  2. float: left;
  3. }
  4. .t-float-right {
  5. float: right;
  6. }
  7. @keyframes tdesign-fade-out {
  8. from {
  9. opacity: 1;
  10. }
  11. to {
  12. opacity: 0;
  13. }
  14. }
  15. .hotspot-expanded.relative {
  16. position: relative;
  17. }
  18. .hotspot-expanded::after {
  19. content: '';
  20. display: block;
  21. position: absolute;
  22. left: 0;
  23. top: 0;
  24. right: 0;
  25. bottom: 0;
  26. transform: scale(1.5);
  27. }
  28. .t-side-bar {
  29. display: flex;
  30. flex-direction: column;
  31. width: 206rpx;
  32. height: 100%;
  33. overflow-y: auto;
  34. }
  35. .t-side-bar__padding {
  36. flex: 1;
  37. background-color: #f3f3f3;
  38. }