diff --git a/src/components/Explore.vue b/src/components/Explore.vue
index af6d099..a28e41b 100644
--- a/src/components/Explore.vue
+++ b/src/components/Explore.vue
@@ -10,7 +10,9 @@
-
+
+
+
{{ location.name.capital }}
@@ -112,14 +114,14 @@ export default class Explore extends Vue {
.explore-containers {
grid-area: containers;
display: flex;
- flex-direction: row;
+ flex-direction: column;
flex-wrap: wrap;
overflow-x: hidden;
- justify-content: flex-end;
}
.explore-containers > .vore-container {
flex-basis: 25%;
+ max-height: 125px;
}
.explore-log {
@@ -191,6 +193,24 @@ export default class Explore extends Vue {
flex-direction: column;
overflow-y: scroll;
}
+
+.container-enter {
+ opacity: 0;
+}
+
+.container-enter-active {
+ transition: opacity 2s;
+}
+
+.container-move {
+ transition: transform 1s;
+}
+
+.container-leave-active {
+ transition: opacity 5s;
+ opacity: 0;
+}
+