taiga-front/app/styles/modules/user-settings/mail-notifications-table.scss

54 lines
1.1 KiB
SCSS

.policy-table {
.policy-table-row {
align-items: center;
border-bottom: 1px solid $whitish;
display: flex;
justify-content: center;
}
.policy-table-header {
@extend %bold;
border-bottom: 2px solid $gray-light;
}
.policy-table-project ,
.policy-table-all,
.policy-table-involved,
.policy-table-none {
padding: 1rem;
}
.policy-table-project {
flex-basis: 0;
flex-grow: 3;
}
.policy-table-all,
.policy-table-involved,
.policy-table-none {
flex-basis: 0;
flex-grow: 1;
}
input {
display: none;
&:checked {
+label {
background: $primary;
transition: background .3s linear;
}
}
}
label {
background: $gray-light;
border-radius: 5px;
color: $white;
display: block;
padding: .5rem;
&:hover {
background: $primary-light;
cursor: pointer;
transition: background .3s linear;
}
}
}