From a15a6e715a50bbe8478308baa5693d0c5fe8a846 Mon Sep 17 00:00:00 2001 From: MiroslavDionisiev Date: Thu, 14 Nov 2024 17:28:12 +0200 Subject: [PATCH] fix: fixted title background issue --- .../editor-journey/editor-journey.scss | 50 ++++++++++--------- 1 file changed, 26 insertions(+), 24 deletions(-) diff --git a/src/components/journeys/editor-journey/editor-journey.scss b/src/components/journeys/editor-journey/editor-journey.scss index fb42a0976..6ecb5ba12 100644 --- a/src/components/journeys/editor-journey/editor-journey.scss +++ b/src/components/journeys/editor-journey/editor-journey.scss @@ -41,31 +41,33 @@ .driver-popover-title[style*=block]+.driver-popover-description { margin: 0; } -} -.title { - padding: 1rem 0; - font-size: 1.125rem; - font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif; - font-weight: 400; - text-align: center; - color: $type-gray; - background-color: $ui-light-primary; -} - -.description-wrapper { - flex-direction: row; - justify-content: space-evenly; - gap: 3rem; - margin: 3rem 4rem; - - .journey-option { - flex-direction: column; - justify-content: center; - gap: 1rem; - - img { - height: $cols2; + .driver-popover-description { + .title { + padding: 1rem 0; + font-size: 1.125rem; + font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif; + font-weight: 400; + text-align: center; + color: $type-gray; + background-color: $ui-light-primary; + } + + .description-wrapper { + flex-direction: row; + justify-content: space-evenly; + gap: 3rem; + margin: 3rem 4rem; + + .journey-option { + flex-direction: column; + justify-content: center; + gap: 1rem; + + img { + height: $cols2; + } + } } } }