redesign user creation form with updated layout and improved checkbox styling
This commit is contained in:
parent
77c1c3114f
commit
7482fcd352
2 changed files with 37 additions and 12 deletions
|
|
@ -401,16 +401,36 @@ input:focus {
|
|||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.checkbox-group {
|
||||
.user-create-form {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
color: var(--text-muted);
|
||||
font-size: 0.875rem;
|
||||
flex-direction: column;
|
||||
gap: 1.25rem;
|
||||
max-width: 400px;
|
||||
}
|
||||
|
||||
.checkbox-group input {
|
||||
width: auto;
|
||||
.user-create-form .btn-primary {
|
||||
align-self: flex-start;
|
||||
}
|
||||
|
||||
.checkbox-container {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
padding: 0.5rem 0;
|
||||
}
|
||||
|
||||
.checkbox-container input {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
accent-color: var(--primary);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.checkbox-label {
|
||||
font-size: 0.875rem;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.success-msg {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue