vant-weapp/packages/info/index.less
2019-09-19 17:46:42 +08:00

33 lines
919 B
Plaintext

@import '../common/style/var.less';
@import '../common/style/theme.less';
.van-info {
position: absolute;
right: 0;
box-sizing: border-box;
white-space: nowrap;
text-align: center;
transform: translateX(50%);
transform-origin: 100%;
.theme(top, 'calc(@info-size / -2)');
.theme(min-width, '@info-size');
.theme(padding, '@info-padding');
.theme(color, '@info-color');
.theme(font-weight, '@info-font-weight');
.theme(font-size, '@info-font-size');
.theme(font-family, '@info-font-family');
.theme(line-height, 'calc(@info-size - @info-border-width * 2)');
.theme(background-color, '@info-background-color');
.theme(border, '@info-border-width solid @white');
.theme(border-radius, '@info-size');
&--dot {
min-width: 0;
border-radius: 100%;
.theme(width, '@info-dot-size');
.theme(height, '@info-dot-size');
.theme(background-color, '@info-dot-color');
}
}