初始化

This commit is contained in:
zhu
2026-03-27 13:29:41 +08:00
commit ee03132cee
112 changed files with 6417 additions and 0 deletions

36
assets/style/flex.scss Normal file
View File

@@ -0,0 +1,36 @@
.flex-align {
display: flex;
align-items: center;
}
.flex-between {
display: flex;
align-items: center;
justify-content: space-between;
}
.flex-center {
display: flex;
align-items: center;
justify-content: center;
}
.flex-column-between {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.flex-column-center {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.ellipsis-1{
width: 100%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}