30 lines
338 B
SCSS
30 lines
338 B
SCSS
.flx{
|
|
display: flex;
|
|
}
|
|
.flx_sb{
|
|
justify-content: space-between;
|
|
}
|
|
.flx_start{
|
|
justify-content: start;
|
|
}
|
|
.flx_ac{
|
|
align-items: center;
|
|
}
|
|
.flx_ae{
|
|
align-items: end;
|
|
}
|
|
.flx_jc{
|
|
justify-content: center;
|
|
}
|
|
.flx_wp{
|
|
flex-wrap: wrap;
|
|
}
|
|
.radius_box{
|
|
background-color: #fff;
|
|
border-radius: 40rpx;
|
|
padding: 40rpx;
|
|
}
|
|
|
|
.w-5 {
|
|
width: 50%;
|
|
} |