grid.wxss 539 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. page {
  29. --td-grid-bg-color: #ffffff;
  30. }
  31. .t-grid {
  32. position: relative;
  33. overflow: hidden;
  34. background-color: var(--td-grid-bg-color);
  35. }
  36. .t-grid__content {
  37. width: auto;
  38. }