完善页面细节

This commit is contained in:
2026-02-25 11:53:57 +08:00
parent 8ec05b331b
commit bd2036630a
23 changed files with 71 additions and 52 deletions

View File

@@ -18,20 +18,32 @@ onMounted(() => {
</script>
<style scoped lang="scss">
.admin-home-page {
width: 100%;
min-height: 100vh;
.home-content {
padding: 24px;
}
.home-content {
padding: 20px;
background-color: #f5f7fa;
.welcome-card {
background: #ffffff;
padding: 30px;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin-top: 40px;
}
.welcome-text {
font-size: 20px;
font-size: 24px;
font-weight: 600;
color: #1a1a1a;
color: #303133;
}
.welcome-subtext {
font-size: 14px;
color: #909399;
margin-top: 10px;
}
</style>