Rename RegisterMembers ui component files

This commit is contained in:
2026-03-12 12:25:54 +01:00
parent 3201a2505e
commit acc421c92f
4 changed files with 2 additions and 2 deletions
@@ -0,0 +1,52 @@
.leftBlock {
width: 100%;
max-width: 720px;
display: flex;
flex-direction: column;
align-items: center;
min-height: calc(100vh - 260px);
box-sizing: border-box;
padding: 20px;
margin: 0 auto;
}
.registerMemberHeader {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
margin-bottom: 20px;
}
.registerForm {
width: 100%;
display: flex;
flex-direction: column;
gap: 16px;
align-items: stretch;
}
.registerForm input {
width: 100%;
box-sizing: border-box;
}
.registerForm button {
width: 100%;
}
.modalContent {
text-align: center;
}
@media (min-width: 768px) {
.leftBlock {
width: 70%;
}
}
@media (min-width: 1024px) {
.leftBlock {
width: 40%;
}
}