style: remove gradient line

This commit is contained in:
MAZE 2023-10-06 13:33:10 +03:30
parent 38f05a3e75
commit 6720e86a0a
4 changed files with 0 additions and 24 deletions

View file

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

View file

@ -1,5 +0,0 @@
import styles from './gradient.module.css';
export function Gradient() {
return <div className={styles.gradient} />;
}

View file

@ -1 +0,0 @@
export { Gradient } from './gradient';

View file

@ -1,7 +1,6 @@
--- ---
import Layout from '@/layouts/layout.astro'; import Layout from '@/layouts/layout.astro';
import { Gradient } from '@/components/gradient';
import { Hero } from '@/components/hero'; import { Hero } from '@/components/hero';
import { Categories } from '@/components/categories'; import { Categories } from '@/components/categories';
@ -9,7 +8,6 @@ import sounds from '@/data/sounds.json';
--- ---
<Layout title="Welcome to Astro."> <Layout title="Welcome to Astro.">
<Gradient />
<Hero /> <Hero />
<Categories client:load sounds={sounds.sounds} /> <Categories client:load sounds={sounds.sounds} />
</Layout> </Layout>