it-tools/components/VuetifyLogo.vue
Corentin Thomasset c66e2097b6
chore: setup nuxt
2020-12-21 22:06:13 +01:00

18 lines
303 B
Vue

<template>
<img class="VuetifyLogo" alt="Vuetify Logo" src="/vuetify-logo.svg" />
</template>
<style>
.VuetifyLogo {
height: 180px;
width: 180px;
transform: rotateY(560deg);
animation: turn 3.5s ease-out forwards 1s;
}
@keyframes turn {
100% {
transform: rotateY(0deg);
}
}
</style>