From 539416f4a1346b87bbd84a485109778986f270aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?marcin=20miko=C5=82ajczak?= Date: Fri, 2 Jul 2021 19:09:22 +0200 Subject: [PATCH 1/2] Correct unauthorized modal styling MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: marcin mikołajczak --- app/styles/components/modal.scss | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/app/styles/components/modal.scss b/app/styles/components/modal.scss index 488c0175c..cba50c92f 100644 --- a/app/styles/components/modal.scss +++ b/app/styles/components/modal.scss @@ -771,7 +771,7 @@ &__text { display: block; margin-bottom: 18px; - color: #fff; + color: var(--primary-text-color); font-size: 14px; } @@ -781,19 +781,13 @@ } &__footer { - display: flex; border-top: 1px solid #666; padding: 10px; - justify-content: center; - align-items: center; + font-size: 14px; + color: var(--primary-text-color--faint); - > span { - font-size: 14px; - color: var(--primary-text-color--faint); - - a { - color: var(--brand-color) !important; - } + a { + color: var(--brand-color) !important; } } From 9a6a6fe7e0349adc0dadd599593f0a9282746a8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?marcin=20miko=C5=82ajczak?= Date: Fri, 2 Jul 2021 19:16:01 +0200 Subject: [PATCH 2/2] text-align: center MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: marcin mikołajczak --- app/styles/components/modal.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/app/styles/components/modal.scss b/app/styles/components/modal.scss index cba50c92f..427060e31 100644 --- a/app/styles/components/modal.scss +++ b/app/styles/components/modal.scss @@ -784,6 +784,7 @@ border-top: 1px solid #666; padding: 10px; font-size: 14px; + text-align: center; color: var(--primary-text-color--faint); a {