feat: 新增样式文件

This commit is contained in:
duanshuwen
2025-10-13 21:07:50 +08:00
parent 621d5d4c57
commit 52975fe514
23 changed files with 249 additions and 5 deletions

20
src/static/scss/flex.scss Normal file
View File

@@ -0,0 +1,20 @@
// 弹性布局
.flex {
display: flex;
}
.flex-items-center {
align-items: center;
}
.flex-justify-center {
justify-content: center;
}
.flex-col {
flex-direction: column;
}
.flex-wrap {
flex-wrap: wrap;
}