This commit is contained in:
Kar l5
2024-05-12 19:37:06 +05:30
commit 85d740109b
69 changed files with 10379 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
<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>