Skip to content

Commit 6ad8b0e

Browse files
committed
fade in for social links
1 parent 8349949 commit 6ad8b0e

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

frontend/src/pages/index.module.css

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
grid-template-columns: repeat(6, 1fr);
100100
gap: 1.5rem;
101101
margin-top: 3rem;
102-
animation: fadeIn 1s ease-out 0.6s both;
102+
animation: simpleFadeIn 1s ease-out 0.6s both;
103103
max-width: 600px;
104104
width: 100%;
105105
}
@@ -136,6 +136,15 @@
136136
}
137137
}
138138

139+
@keyframes simpleFadeIn {
140+
from {
141+
opacity: 0;
142+
}
143+
to {
144+
opacity: 1;
145+
}
146+
}
147+
139148
@keyframes slideDown {
140149
from {
141150
opacity: 0;

0 commit comments

Comments
 (0)