Some css
This commit is contained in:
parent
89dbf93cfd
commit
7e1425c25e
17
frontend/assets/main.css
Normal file
17
frontend/assets/main.css
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
.page-enter-active {
|
||||||
|
animation: bounce-in .5s;
|
||||||
|
}
|
||||||
|
.page-leave-active {
|
||||||
|
animation: bounce-in .5s reverse;
|
||||||
|
}
|
||||||
|
@keyframes bounce-in {
|
||||||
|
0% {
|
||||||
|
transform: scale(0);
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
transform: scale(1.5);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: scale(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -2,7 +2,7 @@
|
|||||||
<v-app>
|
<v-app>
|
||||||
<Navbar />
|
<Navbar />
|
||||||
<v-content>
|
<v-content>
|
||||||
<v-container fluid fill-height>
|
<v-container fill-height>
|
||||||
<v-row no-gutters justify="center">
|
<v-row no-gutters justify="center">
|
||||||
<v-col cols="12">
|
<v-col cols="12">
|
||||||
<nuxt />
|
<nuxt />
|
||||||
|
|||||||
@ -29,7 +29,7 @@ export default {
|
|||||||
/*
|
/*
|
||||||
** Global CSS
|
** Global CSS
|
||||||
*/
|
*/
|
||||||
css: [],
|
css: ['~/assets/main.css'],
|
||||||
/*
|
/*
|
||||||
** Plugins to load before mounting the App
|
** Plugins to load before mounting the App
|
||||||
*/
|
*/
|
||||||
|
|||||||
@ -56,9 +56,3 @@ export default {
|
|||||||
}),
|
}),
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
|
||||||
body {
|
|
||||||
background-color: #1565c0;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user