From 1c90178e5e6747d0bcf62dd617d9c9600615c8ab Mon Sep 17 00:00:00 2001 From: Adrian Simmons Date: Fri, 5 Nov 2021 22:17:05 +0000 Subject: [PATCH] Fix #2 - modal close button not visible --- src/styles/variables/colors.scss | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/styles/variables/colors.scss b/src/styles/variables/colors.scss index 6fc1dc218..26d0ae499 100644 --- a/src/styles/variables/colors.scss +++ b/src/styles/variables/colors.scss @@ -94,6 +94,10 @@ --text-invert: #000 !important; --text-light: var(--grey-300) !important; --text-strong: var(--grey-900) !important; - } + // svg uses currentColor, change the color to keep the modal close X visible + .close { + color: var(--grey-900); + } + } } \ No newline at end of file