diff --git a/src/components/PostCard.vue b/src/components/PostCard.vue
index 4cfdffb..e9f7d62 100644
--- a/src/components/PostCard.vue
+++ b/src/components/PostCard.vue
@@ -2,6 +2,7 @@
@@ -40,6 +41,7 @@ export default {
margin-top: calc(var(--space) * -1);
overflow: hidden;
border-radius: var(--radius) var(--radius) 0 0;
+ position: relative;
&:empty {
display: none;
@@ -47,7 +49,22 @@ export default {
}
&__image {
- min-width: 100%;
+ max-height: 75vh;
+ margin: 0 auto;
+ display: block !important;
+ position: relative;
+ z-index: 2;
+ }
+
+ &__image__bgblur {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ z-index: 1;
+ transform: scale(1.5);
+ filter: blur(30px);
}
&__title {
@@ -76,4 +93,4 @@ export default {
z-index: 0;
}
}
-
\ No newline at end of file
+