Revert "feat: improve components structure"

This commit is contained in:
Lloyd Zhou
2024-07-22 22:18:51 +08:00
committed by GitHub
parent 1943f3b53f
commit 5b126c7e52
49 changed files with 259 additions and 318 deletions

View File

@@ -0,0 +1,36 @@
.auth-page {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
width: 100%;
flex-direction: column;
.auth-logo {
transform: scale(1.4);
}
.auth-title {
font-size: 24px;
font-weight: bold;
line-height: 2;
}
.auth-tips {
font-size: 14px;
}
.auth-input {
margin: 3vh 0;
}
.auth-actions {
display: flex;
justify-content: center;
flex-direction: column;
button:not(:last-child) {
margin-bottom: 10px;
}
}
}