mirror of
https://github.com/Rakantor/personal-portfolio.git
synced 2025-12-17 11:36:32 +01:00
19 lines
305 B
Vue
19 lines
305 B
Vue
<template>
|
|
<img class="vuetify-logo" alt="Vuetify Logo" src="/vuetify-logo.svg" />
|
|
</template>
|
|
|
|
<style>
|
|
.vuetify-logo {
|
|
height: 180px;
|
|
width: 180px;
|
|
transform: rotateY(560deg);
|
|
animation: turn 3.5s ease-out forwards 1s;
|
|
}
|
|
|
|
@keyframes turn {
|
|
100% {
|
|
transform: rotateY(0deg);
|
|
}
|
|
}
|
|
</style>
|