index.less 558 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
@import "~antd/lib/style/themes/default.less";
@import "../../../utils/utils.less";

.waterWave {
  display: inline-block;
  position: relative;
  transform-origin: left;
  .text {
    position: absolute;
    left: 0;
    top: 32px;
    text-align: center;
    width: 100%;
    span {
      color: @text-color-secondary;
      font-size: 14px;
      line-height: 22px;
    }
    h4 {
      color: @heading-color;
      line-height: 32px;
      font-size: 24px;
    }
  }
afc163's avatar
afc163 committed
25 26 27 28
  .waterWaveCanvasWrapper {
    transform: scale(.5);
    transform-origin: 0 0;
  }
29
}