Update styling on solutions to be more consistent

Relates to MS-938
This commit is contained in:
Ramon Wenger 2024-05-14 16:38:44 +02:00
parent 998dfe74af
commit 94e41f9c1e
2 changed files with 3 additions and 4 deletions

View File

@ -74,6 +74,7 @@ export default {
&__toggle { &__toggle {
font-family: $sans-serif-font-family; font-family: $sans-serif-font-family;
font-size: toRem(15px); font-size: toRem(15px);
color: $color-charcoal-light;
/*margin-bottom: 15px;*/ /*margin-bottom: 15px;*/
display: block; display: block;
cursor: pointer; cursor: pointer;
@ -82,11 +83,9 @@ export default {
&__text { &__text {
font-size: toRem(18px); font-size: toRem(18px);
@include regular-paragraph;
color: $color-charcoal-light; color: $color-charcoal-light;
:deep(p) { :deep(p) {
@include regular-paragraph;
color: $color-charcoal-light; color: $color-charcoal-light;
font-size: toRem(18px); font-size: toRem(18px);
} }
@ -95,7 +94,6 @@ export default {
padding-left: $medium-spacing; padding-left: $medium-spacing;
> li { > li {
@include regular-paragraph;
color: $color-charcoal-light; color: $color-charcoal-light;
list-style: disc outside none; list-style: disc outside none;
} }

View File

@ -1,6 +1,7 @@
.solution-text { .solution-text {
&__heading { &__heading {
@include heading-4; @include heading-4;
color: $color-charcoal-light;
margin-bottom: $small-spacing; margin-bottom: $small-spacing;
} }
@ -15,7 +16,7 @@
} }
&__list-item { &__list-item {
@include regular-text; @include inline-title;
margin-bottom: $medium-spacing; margin-bottom: $medium-spacing;
} }
} }