12345678910111213141516171819 |
- @import '../common/style/var.less';
- @import '../common/style/theme.less';
- .van-circle {
- position: relative;
- display: inline-block;
- text-align: center;
- &__text {
- position: absolute;
- top: 50%;
- left: 0;
- width: 100%;
- transform: translateY(-50%);
- background-color: transparent;
- .theme(color, '@circle-text-color');
- }
- }
|