task#14196,kpi页面
This commit is contained in:
@ -2,6 +2,11 @@
|
||||
font-size: $size;
|
||||
font-weight: $weight;
|
||||
}
|
||||
@mixin sizeWeightCol($size,$weight,$col){
|
||||
font-size: $size;
|
||||
font-weight: $weight;
|
||||
color: $col;
|
||||
}
|
||||
@mixin bgFontColor($color,$bgcolor){
|
||||
color:$color;
|
||||
background: $bgcolor;
|
||||
@ -23,6 +28,14 @@
|
||||
width: $w;
|
||||
height: $h;
|
||||
}
|
||||
@mixin whMarLe($w,$h,$l){
|
||||
@include wh($w,$h);
|
||||
margin-left: $l;
|
||||
}
|
||||
@mixin whBg($w,$h,$bg){
|
||||
@include wh($w,$h);
|
||||
background: $bg;
|
||||
}
|
||||
@mixin flexColumn{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@ -35,6 +48,10 @@
|
||||
@include flexColumn;
|
||||
justify-content: space-around;
|
||||
}
|
||||
@mixin flexColCen(){
|
||||
@include flexColumn;
|
||||
align-items: center;
|
||||
}
|
||||
@mixin flexColBet(){
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
|
Reference in New Issue
Block a user