fix(core): align login inputs in center (#13532)

Co-authored-by: Piyush Bhaskar <102078527+Piyush-r-bhaskar@users.noreply.github.com>
This commit is contained in:
pengpeng
2025-12-12 21:38:46 +08:00
committed by GitHub
parent 25e54edbc9
commit 7e964ae563
3 changed files with 5 additions and 2 deletions

View File

@@ -271,7 +271,9 @@
width: 100%;
max-width: 400px;
padding: 1rem;
display: flex;
flex-direction: column;
justify-content: center;
.logo {
width: 250px;
margin-bottom: 40px;

View File

@@ -24,6 +24,7 @@ $checkbox-checked-color: #8405FF;
width: 100%;
margin: 0 auto;
padding-top: 2rem;
height: fit-content;
@media screen and (min-width: 992px) {
gap: 3rem;

View File

@@ -20,7 +20,7 @@
overflow-y: auto;
@media screen and (max-width: 992px) {
align-items: flex-start;
align-items: stretch;
}
}
</style>