App.vue
Код: Выделить всё
html,
body {
background-color: black;
margin: 0;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
-moz-font-smoothing: antialiased;
-o-font-smoothing: antialiased;
}
body {
min-height: 100vh;
position: relative;
overflow-x: hidden;
}
.page-enter-active,
.page-leave-active {
transition: all 1.4s;
}
.page-enter-from,
.page-leave-to {
opacity: 0;
filter: blur(1rem);
}
Подробнее здесь: https://stackoverflow.com/questions/793 ... navigation