about summary refs log tree commit diff
path: root/components
diff options
context:
space:
mode:
Diffstat (limited to 'components')
-rw-r--r--components/PostLink.vue6
1 files changed, 6 insertions, 0 deletions
diff --git a/components/PostLink.vue b/components/PostLink.vue
index 5bc5127..9ee24b7 100644
--- a/components/PostLink.vue
+++ b/components/PostLink.vue
@@ -44,6 +44,12 @@ export default {
   box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
   background: #ffffff;
   text-align: left;
+  transition: transform 300ms ease-in-out;
+}
+
+.post-link:hover {
+  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
+  transform: scale(1.02);
 }
 
 .post-link > a {