add frontend project
This commit is contained in:
22
PROJECT/fastprod_frontend/components/VuetifyLogo.vue
Normal file
22
PROJECT/fastprod_frontend/components/VuetifyLogo.vue
Normal 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>
|
||||
Reference in New Issue
Block a user