mirror of
https://github.com/remvze/moodist.git
synced 2025-12-17 08:54:13 +00:00
style: remove gradient line
This commit is contained in:
parent
38f05a3e75
commit
6720e86a0a
4 changed files with 0 additions and 24 deletions
|
|
@ -1,16 +0,0 @@
|
|||
.gradient {
|
||||
width: 100%;
|
||||
height: 3px;
|
||||
background: linear-gradient(
|
||||
90deg,
|
||||
rgb(255 200 71) 3%,
|
||||
rgb(254 155 70) 16%,
|
||||
rgb(246 104 78) 28%,
|
||||
rgb(245 92 157) 40%,
|
||||
rgb(200 89 228) 52%,
|
||||
rgb(98 111 234) 65%,
|
||||
rgb(101 229 178) 77%,
|
||||
rgb(121 232 101) 89%,
|
||||
rgb(186 240 112) 100%
|
||||
);
|
||||
}
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
import styles from './gradient.module.css';
|
||||
|
||||
export function Gradient() {
|
||||
return <div className={styles.gradient} />;
|
||||
}
|
||||
|
|
@ -1 +0,0 @@
|
|||
export { Gradient } from './gradient';
|
||||
|
|
@ -1,7 +1,6 @@
|
|||
---
|
||||
import Layout from '@/layouts/layout.astro';
|
||||
|
||||
import { Gradient } from '@/components/gradient';
|
||||
import { Hero } from '@/components/hero';
|
||||
import { Categories } from '@/components/categories';
|
||||
|
||||
|
|
@ -9,7 +8,6 @@ import sounds from '@/data/sounds.json';
|
|||
---
|
||||
|
||||
<Layout title="Welcome to Astro.">
|
||||
<Gradient />
|
||||
<Hero />
|
||||
<Categories client:load sounds={sounds.sounds} />
|
||||
</Layout>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue