23 lines
368 B
SCSS
23 lines
368 B
SCSS
.solution-text {
|
|
&__heading {
|
|
@include heading-4;
|
|
color: $color-silver-dark;
|
|
margin-bottom: $small-spacing;
|
|
}
|
|
|
|
&__answer {
|
|
@include regular-text;
|
|
margin-bottom: $large-spacing;
|
|
}
|
|
|
|
&__list {
|
|
list-style: disc;
|
|
padding-left: $medium-spacing;
|
|
}
|
|
|
|
&__list-item {
|
|
@include inline-title;
|
|
margin-bottom: $medium-spacing;
|
|
}
|
|
}
|