Skip to content

Commit

Permalink
chore: use standard css file name
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasheartman committed Feb 23, 2022
1 parent 4305166 commit 105f3ba
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
7 changes: 5 additions & 2 deletions website/src/components/UserFeedback/UserFeedback.jsx
@@ -1,8 +1,11 @@
import React from 'react';
import './styles.module.css';
import './styles.css';

const Component = ({ text }) => (
<article className="user-feedback">{text}</article>
<article className="user-feedback">
<form></form>
<p className="scream">{text}</p>
</article>
);

export default Component;
8 changes: 8 additions & 0 deletions 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);
}
3 changes: 0 additions & 3 deletions website/src/components/UserFeedback/styles.module.css

This file was deleted.

0 comments on commit 105f3ba

Please sign in to comment.