diff --git a/src/App.vue b/src/App.vue
index 28dfc5b..49b919d 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,20 +1,29 @@
-
-
-
-
-
-
-
-
+
+
+
diff --git a/src/assets/transitions.css b/src/assets/transitions.css
index 79c21ff..4ad8cc6 100644
--- a/src/assets/transitions.css
+++ b/src/assets/transitions.css
@@ -1,4 +1,3 @@
-
.dropdown-enter-active,
.dropdown-leave-active {
transition: all 0.3s ease;
@@ -8,4 +7,15 @@
.dropdown-leave-to {
opacity: 0;
transform: translateY(-10px);
-}
\ No newline at end of file
+}
+
+.page-enter-active,
+.page-leave-active {
+ transition: opacity 0.3s ease, transform 0.3s ease;
+}
+
+.page-enter-from,
+.page-leave-to {
+ opacity: 0;
+ transform: translateY(15px);
+}