styles für register- und loginform hinzugefügt

This commit is contained in:
2025-07-02 10:57:26 +02:00
parent e7b3a062b7
commit 430d1b38c0
7 changed files with 110 additions and 67 deletions

View File

@@ -13,6 +13,7 @@
color: var(--brand-white);
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
cursor: pointer;
}
@@ -22,6 +23,11 @@
border-radius: 3px;
}
.btn-secondary{
background: var(--fullblock);
border-radius: 3px;
}
.btn-user {
border-radius: 9999px;
color: var(--brand-primary);

View File

@@ -64,3 +64,26 @@ input, textarea {
margin-top: 5px;
}
.form-user{
justify-content: center!important;
grid-template-columns: auto!important;
}
/* fix radio buttons registration */
.input:nth-child(5){
flex-direction: row;
justify-content: space-between;
max-width: 290px;
align-items: center;
}
.input:nth-child(5) label{
display: flex;
flex-direction: row;
align-items: center;
gap: 10px;
}
.input:nth-child(5) label input{
margin-top: 0;
}