diff --git a/src/components/about/index.tsx b/src/components/about/index.tsx index 09b4ba8..15347e2 100644 --- a/src/components/about/index.tsx +++ b/src/components/about/index.tsx @@ -39,14 +39,14 @@ export const About: FunctionalComponent = () => ( Sign up for the waiting list! */} - Join Our Discord! - + */} ); diff --git a/src/components/header/style.scss b/src/components/header/style.scss index 73a25d6..05967fd 100644 --- a/src/components/header/style.scss +++ b/src/components/header/style.scss @@ -7,7 +7,7 @@ height: 100vh; min-height: 100vh; width: 100vw; - background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #05238E 100%,), url('../../../static/banner.gif'); + background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, $background-color 100%,), url('../../../static/banner.gif'); background-repeat: no-repeat; background-size: cover; diff --git a/src/components/numbers/style.scss b/src/components/numbers/style.scss index 5188ee9..189e0e5 100644 --- a/src/components/numbers/style.scss +++ b/src/components/numbers/style.scss @@ -2,8 +2,8 @@ @import "./src/variables"; .numbers { - margin-bottom: 64px; - + margin-bottom: 64px; + // background: linear-gradient(180deg, $background-color 0%, rgba(37, 0, 67, 0.00)); h2 { color: $secondary-color; diff --git a/src/global.scss b/src/global.scss index 1ac01c8..6632a0c 100644 --- a/src/global.scss +++ b/src/global.scss @@ -22,6 +22,10 @@ body { position: relative; } +.gradient { + background: linear-gradient(180deg, $background-color 25%, rgba(0, 0, 0, 0.00) 100%); +} + section { margin: 0 8px; } diff --git a/src/index.tsx b/src/index.tsx index 4975a65..ac9e732 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1,4 +1,5 @@ import { Fragment, h, render } from "preact"; +import * as style from "./global.scss"; import { About, @@ -22,8 +23,10 @@ const start = (): void => { render(
- - +
+ + +