first commit

This commit is contained in:
编码猿
2024-09-27 02:06:13 +08:00
commit 852d94fbb9
36760 changed files with 3274413 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
// 弹性盒子 水平垂直居中
.alineCenter{
display : flex;
justify-content: center;
align-items: center;
}
// 弹性盒子 多元素垂直居中
.verticalCenter{
display: flex;
flex-flow: column;
align-items: center;
}
// 弹性盒子 单行元素水平居中
.levelCenter{
display: flex;
align-items: center;
}
// 设置下边线
.undeLine(@backgroundColor,@bottom){
content: "";
width: 100%;
height: 2upx;
background-color: @backgroundColor;
position: absolute;
left: 0;
bottom: @bottom;
}