25 lines
353 B
SCSS
25 lines
353 B
SCSS
@import 'variables';
|
|
@import 'mixins';
|
|
|
|
.objective-group {
|
|
&__objective-list {
|
|
list-style: none;
|
|
|
|
&--no-list {
|
|
list-style: none;
|
|
padding-left: 0;
|
|
}
|
|
}
|
|
|
|
&__objective {
|
|
padding: $small-spacing 0;
|
|
line-height: 1.5;
|
|
@include light-border(top);
|
|
|
|
&:last-of-type {
|
|
@include light-border(bottom);
|
|
}
|
|
}
|
|
|
|
}
|