Skip to content

Commit 014e1e7

Browse files
authored
Merge pull request #9 from Roystbeef/terragon/enhance-paw-prints-transparency
2 parents de7ec7c + 446f11f commit 014e1e7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

components/PawPrints.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export function PawPrints() {
3333
{pawPrints.map((print) => (
3434
<motion.div
3535
key={print.id}
36-
className="absolute text-amber-200/20"
36+
className="absolute text-amber-200/10"
3737
style={{
3838
left: `${print.x}%`,
3939
top: `${print.y}%`,
@@ -43,7 +43,7 @@ export function PawPrints() {
4343
y: [0, -20, 0],
4444
x: [0, 10, -10, 0],
4545
rotate: [0, 360],
46-
opacity: [0.1, 0.3, 0.1]
46+
opacity: [0.05, 0.15, 0.05]
4747
}}
4848
transition={{
4949
duration: print.duration,

0 commit comments

Comments
 (0)