Skip to content

Commit 6530284

Browse files
authored
fix: hovering animation (#4816)
1 parent 9c0700b commit 6530284

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

apps/desktop/src/lib/components/BoardEmptyState.svelte

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@
154154
transform: translateX(-50%) scale(1.15);
155155
border-radius: 100%;
156156
background-color: var(--clr-illustration-outline);
157-
opacity: 0.1;
157+
opacity: 0.09;
158158
animation: shadow-scale 5.5s infinite ease-in-out;
159159
animation-delay: 3s;
160160
}
@@ -164,7 +164,7 @@
164164
position: absolute;
165165
top: 50%;
166166
left: 50%;
167-
transform: translate(-50%, -66%) translateZ(0);
167+
transform: translate(-50%, -70%) translateZ(0);
168168
width: 212px;
169169
animation: hovering 5.5s infinite ease-in-out;
170170
animation-delay: 3s;
@@ -182,15 +182,15 @@
182182
}
183183
@keyframes shadow-scale {
184184
0% {
185-
opacity: 0.08;
185+
opacity: 0.09;
186186
transform: translateX(-50%) scale(1.15);
187187
}
188188
50% {
189189
opacity: 0.12;
190190
transform: translateX(-50%) scale(1);
191191
}
192192
100% {
193-
opacity: 0.08;
193+
opacity: 0.09;
194194
transform: translateX(-50%) scale(1.15);
195195
}
196196
}

0 commit comments

Comments
 (0)