diff --git a/website/src/components/UserFeedback/UserFeedback.jsx b/website/src/components/UserFeedback/UserFeedback.jsx index a2958e13762..576891ed772 100644 --- a/website/src/components/UserFeedback/UserFeedback.jsx +++ b/website/src/components/UserFeedback/UserFeedback.jsx @@ -1,8 +1,11 @@ import React from 'react'; -import './styles.module.css'; +import './styles.css'; const Component = ({ text }) => ( -
{text}
+
+
+

{text}

+
); export default Component; diff --git a/website/src/components/UserFeedback/styles.css b/website/src/components/UserFeedback/styles.css new file mode 100644 index 00000000000..e6f72b65db8 --- /dev/null +++ b/website/src/components/UserFeedback/styles.css @@ -0,0 +1,8 @@ +.user-feedback { + width: 100%; + position: absolute; + bottom: 0; + border: var(--ifm-global-border-width) solid var(--unleash-color-gray); + border-radius: var(--ifm-global-radius); + box-shadow: var(--ifm-global-shadow-lw); +} diff --git a/website/src/components/UserFeedback/styles.module.css b/website/src/components/UserFeedback/styles.module.css deleted file mode 100644 index 3e402ed69c0..00000000000 --- a/website/src/components/UserFeedback/styles.module.css +++ /dev/null @@ -1,3 +0,0 @@ -.user-feedback { - background: goldenrod; -}