style: 全局样式

This commit is contained in:
2026-02-04 15:11:47 +08:00
parent 6f903f6b27
commit dfc97f9056

View File

@@ -33,3 +33,32 @@ body,
background-image: url('@/assets/images/home-bg.png');
background-size: 100% 100%;
}
.flex {
display: flex;
}
.flex-col {
flex-direction: column;
}
.flex-center {
justify-content: center;
align-items: center;
}
.flex-1 {
flex: 1;
}
.align-center {
align-items: center;
}
.justify-center {
justify-content: center;
}
.space-between {
justify-content: space-between;
}