啊鑫
8 天以前 fca192d3c38c5dcfbb6ace8bc71d6078f6a079b2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
@import '../style/var';
 
.van-info {
  position: absolute;
  top: 0;
  right: 0;
  box-sizing: border-box;
  min-width: @info-size;
  padding: @info-padding;
  color: @info-color;
  font-weight: @info-font-weight;
  font-size: @info-font-size;
  font-family: @info-font-family;
  line-height: 1.2;
  text-align: center;
  background-color: @info-background-color;
  border: @info-border-width solid @white;
  border-radius: @info-size;
  transform: translate(50%, -50%);
  transform-origin: 100%;
 
  &--dot {
    width: @info-dot-size;
    min-width: 0;
    height: @info-dot-size;
    background-color: @info-dot-color;
    border-radius: 100%;
  }
}