From 94e41f9c1e021c5a1b3653542a564f16a2757a87 Mon Sep 17 00:00:00 2001 From: Ramon Wenger Date: Tue, 14 May 2024 16:38:44 +0200 Subject: [PATCH] Update styling on solutions to be more consistent Relates to MS-938 --- client/src/components/content-blocks/Solution.vue | 4 +--- client/src/styles/_solutions.scss | 3 ++- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/client/src/components/content-blocks/Solution.vue b/client/src/components/content-blocks/Solution.vue index c818b029..45d1924a 100644 --- a/client/src/components/content-blocks/Solution.vue +++ b/client/src/components/content-blocks/Solution.vue @@ -74,6 +74,7 @@ export default { &__toggle { font-family: $sans-serif-font-family; font-size: toRem(15px); + color: $color-charcoal-light; /*margin-bottom: 15px;*/ display: block; cursor: pointer; @@ -82,11 +83,9 @@ export default { &__text { font-size: toRem(18px); - @include regular-paragraph; color: $color-charcoal-light; :deep(p) { - @include regular-paragraph; color: $color-charcoal-light; font-size: toRem(18px); } @@ -95,7 +94,6 @@ export default { padding-left: $medium-spacing; > li { - @include regular-paragraph; color: $color-charcoal-light; list-style: disc outside none; } diff --git a/client/src/styles/_solutions.scss b/client/src/styles/_solutions.scss index 9ced3531..bec46170 100644 --- a/client/src/styles/_solutions.scss +++ b/client/src/styles/_solutions.scss @@ -1,6 +1,7 @@ .solution-text { &__heading { @include heading-4; + color: $color-charcoal-light; margin-bottom: $small-spacing; } @@ -15,7 +16,7 @@ } &__list-item { - @include regular-text; + @include inline-title; margin-bottom: $medium-spacing; } }