story#7189,回程车小程序司机端-迁移认证页面
This commit is contained in:
@ -104,4 +104,33 @@
|
||||
@mixin colHeight($col,$hei){
|
||||
color: $col;
|
||||
line-height: $hei;
|
||||
}
|
||||
@mixin width_height($width,$height){
|
||||
width: $width;
|
||||
height: $height;
|
||||
}
|
||||
@mixin flex($row,$colum){
|
||||
display: flex;
|
||||
justify-content: $row;
|
||||
align-items: $colum;
|
||||
}
|
||||
@mixin center(){
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
@mixin direction($justify-content){
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: $justify-content;
|
||||
}
|
||||
@mixin iconImg($width,$height,$marginRight){
|
||||
width: $width;
|
||||
height: $height;
|
||||
margin-right: $marginRight;
|
||||
}
|
||||
|
||||
@mixin iconImgLeft($width,$height,$marginRight){
|
||||
width: $width;
|
||||
height: $height;
|
||||
margin-left: $marginRight;
|
||||
}
|
||||
Reference in New Issue
Block a user