diff --git a/components/Grid.vue b/components/Grid.vue
index 1cac40d..e25ec13 100644
--- a/components/Grid.vue
+++ b/components/Grid.vue
@@ -1,44 +1,47 @@
Projects
-
-
-
- -
-
-
- -
-
-
- -
-
-
-
-
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+
+
+
+
-
+
@@ -101,6 +108,20 @@ export default {
object-fit: cover;
}
+.grid-item {
+ transition: all 1s;
+}
+
+.flip-grid-enter,
+.flip-grid-leave-to {
+ opacity: 0;
+ transform: translateY(30px);
+}
+
+.flip-grid-leave-active {
+ position: absolute;
+}
+
.btn {
@apply inline-block border rounded py-1 px-3;
}
diff --git a/package.json b/package.json
index c29ebad..45a7ffc 100644
--- a/package.json
+++ b/package.json
@@ -12,6 +12,7 @@
"dependencies": {
"axios": "^0.21.0",
"core-js": "^3.6.5",
+ "lodash": "^4.17.20",
"nuxt": "^2.14.6"
},
"devDependencies": {