tangled
alpha
login
or
join now
finxol.io
/
portfolio
0
fork
atom
Personal site
staging.colinozanne.co.uk
portfolio
astro
0
fork
atom
overview
issues
pulls
pipelines
fix: resumable hover animation
finxol.io
1 month ago
c504ddab
7f038dc6
verified
This commit was signed with the committer's
known signature
.
finxol.io
SSH Key Fingerprint:
SHA256:olFE3asYdoBMScuJOt60UxXdJ0RFdGv5kVKrdOtIcPI=
1/1
deploy.yaml
success
18s
+3
-1
1 changed file
expand all
collapse all
unified
split
src
components
customise.astro
+3
-1
src/components/customise.astro
···
276
276
var(--rose-600)
277
277
);
278
278
--angle: 0deg;
279
279
+
animation: rotate 1.5s linear infinite;
280
280
+
animation-play-state: paused;
279
281
280
282
@media screen and (max-width: 768px) {
281
283
flex-direction: row;
282
284
}
283
285
284
286
&:hover {
285
285
-
animation: rotate 2s linear infinite;
287
287
+
animation-play-state: running;
286
288
}
287
289
}
288
290