style: 全局样式

This commit is contained in:
2026-02-06 09:46:00 +08:00
parent cafe7b0d99
commit 28a29bc36b

View File

@@ -42,4 +42,33 @@ body,
.flex{
display: flex;
}
.flex-center{
justify-content: center;
align-items: center;
}
.flex-1{
flex: 1;
}
.flex-col{
flex-direction: column;
}
.align-center{
align-items: center;
}
.space-between{
justify-content: space-between;
}
.justify-center{
justify-content: center;
}
.relative{
position: relative;
}