From 9c0a5b4c128b05bd0abee35b3bbe61be4df864ea Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Tue, 1 Mar 2022 17:21:28 +0100 Subject: [PATCH] fix: use position: fixed to set UI components of feedback. --- website/src/components/UserFeedback/styles.module.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/src/components/UserFeedback/styles.module.css b/website/src/components/UserFeedback/styles.module.css index 7b8dd0cbbe..c409b3c19e 100644 --- a/website/src/components/UserFeedback/styles.module.css +++ b/website/src/components/UserFeedback/styles.module.css @@ -17,7 +17,7 @@ .user-feedback { width: 100%; - position: absolute; + position: fixed; background: var(--ifm-background-color); bottom: 0; border: var(--ifm-global-border-width) solid var(--unleash-color-gray); @@ -211,7 +211,7 @@ button.close-button { padding-block: var(--ifm-spacing-vertical); border-radius: 0 var(--ifm-global-radius) var(--ifm-global-radius) 0; border: none; - position: absolute; + position: fixed; bottom: 25vh; right: 0; writing-mode: vertical-lr;