-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
372c72e
commit 1b1dec3
Showing
5 changed files
with
1,667 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; | ||
|
||
.fill-primary-light { | ||
fill: #063528; | ||
} | ||
|
||
.fill-primary-dark { | ||
fill: #0d9373; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<script setup lang='ts'> | ||
import HeroParticles from './Particles.vue' | ||
import HeroBackground from './ParticlesBackground.vue' | ||
</script> | ||
|
||
<template> | ||
<div class="relative w-[600px] h-[400px]"> | ||
<HeroParticles :accelerate="true" class="absolute top-0" /> | ||
<HeroBackground /> | ||
</div> | ||
</template> |
Oops, something went wrong.