From e007123c59178cf48547ac9bef21023c23ae8276 Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Sun, 27 Feb 2022 16:27:28 +0100 Subject: [PATCH] fix: make close button visible again --- website/src/components/UserFeedback/styles.module.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/website/src/components/UserFeedback/styles.module.css b/website/src/components/UserFeedback/styles.module.css index 47913a0d62..6b7fbb76db 100644 --- a/website/src/components/UserFeedback/styles.module.css +++ b/website/src/components/UserFeedback/styles.module.css @@ -87,6 +87,7 @@ button.close-button { padding: 0; aspect-ratio: 1; height: 1em; + color: var(--ifm-font-color-base); } .close-button:hover { @@ -102,6 +103,10 @@ button.close-button { justify-content: end; } +.close-button svg { + fill: currentColor; +} + .user-feedback button[type='submit'] { background-color: var(--ifm-color-primary); color: var(--ifm-background-color); @@ -132,6 +137,11 @@ button.close-button { .user-feedback textarea { display: block; width: 100%; + background-color: var(--ifm-background-color); + color: currentColor; + border-radius: var(--ifm-global-radius); + border: max(var(--ifm-global-border-width), 2px) solid + var(--unleash-color-gray); } .customer-type-inputs {