taiga-front/app/styles/modules/admin/admin-project-profile.scss

57 lines
1.1 KiB
SCSS

.project-details {
form {
max-width: 700px;
width: 100%;
}
input,
textarea {
@extend %title;
}
fieldset {
margin-bottom: 1rem;
}
label {
@extend %title;
display: block;
margin-bottom: .2rem;
}
textarea {
height: 10rem;
}
.privacy-settings {
display: flex;
margin-bottom: 2rem;
div {
flex-basis: 0;
flex-grow: 1;
&:first-child {
margin-right: .5rem;
}
}
label {
@extend %title;
background: $white;
border: 1px solid $whitish;
cursor: pointer;
display: block;
text-align: center;
}
input {
&:checked+label {
background: $fresh-taiga;
color: $white;
}
}
}
.button-green {
color: $white;
display: block;
text-align: center;
}
.delete-project {
@extend %small;
display: block;
margin-top: 1rem;
}
}