租房小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

33 lines
402 B

@mixin flex {
display: flex;
}
@mixin rn {
flex-flow: row nowrap;
}
@mixin cn {
flex-flow: column nowrap;
}
@mixin flex-rn {
@include flex;
@include rn;
align-items: center;
}
@mixin flex-cn {
@include flex;
@include cn;
align-items: center;
}
@mixin flex-h-c {
@include flex-rn;
justify-content: center;
}
@mixin flex-v-c {
@include flex-cn;
justify-content: center;
}