index.less 521 B

12345678910111213141516171819202122232425262728
  1. @import "~antd/lib/style/themes/default.less";
  2. .waterWave {
  3. display: inline-block;
  4. position: relative;
  5. transform-origin: left;
  6. .text {
  7. position: absolute;
  8. left: 0;
  9. top: 32px;
  10. text-align: center;
  11. width: 100%;
  12. span {
  13. color: @text-color-secondary;
  14. font-size: 14px;
  15. line-height: 22px;
  16. }
  17. h4 {
  18. color: @heading-color;
  19. line-height: 32px;
  20. font-size: 24px;
  21. }
  22. }
  23. .waterWaveCanvasWrapper {
  24. transform: scale(.5);
  25. transform-origin: 0 0;
  26. }
  27. }