We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea570a3 commit e0ce1abCopy full SHA for e0ce1ab
src/components/Hero/style.css
@@ -5,6 +5,40 @@
5
justify-content: center;
6
gap: 4rem;
7
height: 100vh;
8
+ position: relative;
9
+
10
+ --gradient-height: 1.5rem;
11
+}
12
13
+.hero::before {
14
+ content: '';
15
+ position: absolute;
16
+ top: 100%;
17
+ left: 0;
18
+ width: 100%;
19
+ height: var(--gradient-height);
20
+ z-index: -1;
21
+ background: linear-gradient(
22
+ to right,
23
+ var(--color-secondary),
24
+ var(--color-tertiary)
25
+ );
26
27
28
+.hero::after {
29
30
31
32
33
34
35
36
37
+ to bottom,
38
+ transparent,
39
+ transparent 50%,
40
+ var(--color-background)
41
42
}
43
44
.hero-background {
0 commit comments