mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-21 06:09:40 +02:00
23 lines
316 B
Vue
23 lines
316 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>
|