task#14196,kpi页面

This commit is contained in:
2024-06-29 15:29:30 +08:00
parent b6951292a9
commit b300809698
11 changed files with 983 additions and 16 deletions

View File

@ -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;