1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-06-04 01:18:20 +02:00

chore: use standard css file name

This commit is contained in:
Thomas Heartman 2022-02-23 10:37:42 +01:00
parent 4305166186
commit 105f3bac21
3 changed files with 13 additions and 5 deletions

View File

@ -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;

View File

@ -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);
}

View File

@ -1,3 +0,0 @@
.user-feedback {
background: goldenrod;
}