mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-31 04:04:18 -04:00
19 lines
303 B
Vue
19 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>
|