12345678910111213141516171819202122232425262728 |
- @import "~antd/lib/style/themes/default.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;
- }
- }
- .waterWaveCanvasWrapper {
- transform: scale(.5);
- transform-origin: 0 0;
- }
- }
|