54 lines
1.1 KiB
SCSS
54 lines
1.1 KiB
SCSS
.admin-contrib {
|
|
form {
|
|
margin: 1rem 0;
|
|
max-width: 700px;
|
|
width: 100%;
|
|
}
|
|
h2 {
|
|
@extend %text;
|
|
@extend %large;
|
|
margin-bottom: 0;
|
|
}
|
|
fieldset {
|
|
border-bottom: 1px solid $whitish;
|
|
margin-bottom: 1rem;
|
|
}
|
|
input {
|
|
margin-bottom: 1rem;
|
|
}
|
|
label {
|
|
@extend %text;
|
|
display: block;
|
|
margin-bottom: .25rem;
|
|
}
|
|
.submit-button {
|
|
display: block;
|
|
text-align: center;
|
|
}
|
|
.select-input-text {
|
|
.field-with-option {
|
|
display: flex;
|
|
}
|
|
.option-wrapper {
|
|
align-items: center;
|
|
border: 1px solid $gray-light;
|
|
border-left: 0;
|
|
border-radius: 0 5px 5px 0;
|
|
cursor: pointer;
|
|
display: flex;
|
|
margin-bottom: 1rem;
|
|
padding: 0 1rem;
|
|
}
|
|
}
|
|
.check-item {
|
|
align-items: center;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-top: 1rem;
|
|
&:last-child {
|
|
border-bottom: 0;
|
|
margin-bottom: 1rem;
|
|
}
|
|
}
|
|
}
|