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:
parent
4305166186
commit
105f3bac21
@ -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
website/src/components/UserFeedback/styles.css
Normal file
8
website/src/components/UserFeedback/styles.css
Normal 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);
|
||||
}
|
@ -1,3 +0,0 @@
|
||||
.user-feedback {
|
||||
background: goldenrod;
|
||||
}
|
Loading…
Reference in New Issue
Block a user