style:首页

This commit is contained in:
zjc
2024-12-16 17:38:50 +08:00
parent cc9782e007
commit 0c148685d2
39 changed files with 2838 additions and 1282 deletions

View File

@@ -1,11 +1,33 @@
.flex {
display: flex;
}
.flex-1 {
flex: 1;
}
.align-center {
align-items: center;
}
.align-end {
align-items: flex-end;
}
.justify-between {
justify-content: space-between;
}
.justify-evenly {
justify-content: space-evenly;
}
.mb-6 {
margin-bottom: vh(6);
}
.pt-10 {
padding-top: vh(10);
}
.pb-10 {
padding-bottom: vh(10);
}
.mb-10 {
margin-bottom: vh(10);
}
.pt-20 {
padding-top: vh(20);
}