Fix style

This commit is contained in:
T'JAMPENS QUENTIN p2406187
2026-02-10 14:14:08 +01:00
parent 461b39718b
commit 155d510125
@@ -1,13 +1,13 @@
.leftBlock { .leftBlock {
width: 40%; width: 100%;
max-width: 720px;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
height: 100%;
min-height: calc(100vh - 260px); min-height: calc(100vh - 260px);
box-sizing: border-box; box-sizing: border-box;
padding: 20px; padding: 20px;
margin: 0; margin: 0 auto;
} }
.registerMemberHeader { .registerMemberHeader {
@@ -15,17 +15,38 @@
align-items: center; align-items: center;
justify-content: center; justify-content: center;
width: 100%; width: 100%;
margin-bottom: 10px; margin-bottom: 20px;
} }
.registerForm { .registerForm {
width: 100%;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 10px; gap: 16px;
align-items: center; align-items: stretch;
justify-content: center; }
.registerForm input {
width: 100%;
box-sizing: border-box;
}
.registerForm button {
width: 100%;
} }
.modalContent { .modalContent {
text-align: center; text-align: center;
} }
@media (min-width: 768px) {
.leftBlock {
width: 70%;
}
}
@media (min-width: 1024px) {
.leftBlock {
width: 40%;
}
}