Skip to content
This repository was archived by the owner on Nov 8, 2023. It is now read-only.

Commit 537e97b

Browse files
committed
fix(Logo): Remove animation from logo
It confused me while trying the a11y-transition
1 parent a0c955f commit 537e97b

File tree

1 file changed

+7
-15
lines changed

1 file changed

+7
-15
lines changed
+7-15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
<template>
2-
<svg class="NuxtLogo" width="245" height="180" viewBox="0 0 452 342" xmlns="http://www.w3.org/2000/svg">
2+
<svg
3+
class="NuxtLogo"
4+
width="245"
5+
height="180"
6+
viewBox="0 0 452 342"
7+
xmlns="http://www.w3.org/2000/svg"
8+
>
39
<g fill="none" fill-rule="evenodd">
410
<path
511
d="M139 330l-1-2c-2-4-2-8-1-13H29L189 31l67 121 22-16-67-121c-1-2-9-14-22-14-6 0-15 2-22 15L5 303c-1 3-8 16-2 27 4 6 10 12 24 12h136c-14 0-21-6-24-12z"
@@ -17,17 +23,3 @@
1723
</g>
1824
</svg>
1925
</template>
20-
<style>
21-
.NuxtLogo {
22-
animation: 1s appear;
23-
}
24-
25-
@keyframes appear {
26-
0% {
27-
opacity: 0;
28-
}
29-
100% {
30-
opacity: 1;
31-
}
32-
}
33-
</style>

0 commit comments

Comments
 (0)