25 lines
414 B
SCSS
25 lines
414 B
SCSS
@import "variables";
|
|
|
|
.simple-list {
|
|
border-top: 1px solid $color-silver-dark;
|
|
|
|
&--active {
|
|
margin-bottom: 2*$large-spacing;
|
|
}
|
|
|
|
&__item {
|
|
line-height: $list-height;
|
|
height: $list-height;
|
|
border-bottom: 1px solid $color-silver-dark;
|
|
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
&__action {
|
|
@include default-link;
|
|
color: $color-brand;
|
|
}
|
|
}
|