30 lines
631 B
SCSS
30 lines
631 B
SCSS
.backlog-menu {
|
|
background: $whitish;
|
|
color: $blackish;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-bottom: 1rem;
|
|
.trans-button {
|
|
@extend %trans-button;
|
|
color: $blackish;
|
|
display: inline-block;
|
|
padding: .4rem 1.5rem;
|
|
&.active,
|
|
&:hover {
|
|
background: $gray-light;
|
|
color: $gray;
|
|
}
|
|
&.active {
|
|
&:hover {
|
|
background: lighten($gray, 30%);
|
|
}
|
|
}
|
|
&.move-to-sprint {
|
|
display: none;
|
|
}
|
|
}
|
|
.button-bulk {
|
|
margin-left: .2rem;
|
|
}
|
|
}
|