Initial commit

This commit is contained in:
2022-04-08 18:47:15 +02:00
commit d795d9b82b
22 changed files with 28578 additions and 0 deletions

View File

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