This commit is contained in:
2026-02-10 16:58:50 +08:00
parent ca87b5269d
commit a377e36d90
2 changed files with 24 additions and 10 deletions

View File

@@ -29,8 +29,28 @@ body,
transform: rotate(360deg); transform: rotate(360deg);
} }
} }
.background-pink { .flex {
background-color: #f8f7f5; display: flex;
background-image: url('@/assets/images/home-bg.png'); }
background-size: 100% 100%; .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;
} }

View File

@@ -34,12 +34,6 @@ body,
} }
} }
.background-pink {
background-color: rgba(248, 247, 245, 1);
background-image: url('@/assets/images/home-bg.png');
background-size: 100% 100%;
}
.flex{ .flex{
display: flex; display: flex;
} }