1
0

Add small ease-in-out transition between pages. (#66)

Really makes a big difference than before.
This commit is contained in:
calum6541
2020-12-31 17:21:00 +00:00
committed by GitHub
parent 7e891ecb79
commit 5a6c2dfcd5

View File

@@ -253,6 +253,16 @@ export default {
</script>
<style lang="scss">
.page-enter-active,
.page-leave-active {
transition: ease-in-out 100ms;
}
.page-enter,
.page-leave-to {
opacity: 0;
}
.layout {
background-color: var(--color-bg);
display: block;