diff --git a/webapp/components/PostCard/PostCard.vue b/webapp/components/PostCard/PostCard.vue index d54a86367..821b40216 100644 --- a/webapp/components/PostCard/PostCard.vue +++ b/webapp/components/PostCard/PostCard.vue @@ -27,7 +27,7 @@ - {{ post.title }} + {{ post.title }} @@ -186,6 +186,10 @@ export default { height: 75px; } + .post-title { + margin-top: $space-large; + } + /* workaround to avoid jumping layout when hc-user is rendered */ .user-wrapper { height: 36px; diff --git a/webapp/components/User/User.vue b/webapp/components/User/User.vue index e366cd6c5..bf8913b54 100644 --- a/webapp/components/User/User.vue +++ b/webapp/components/User/User.vue @@ -1,6 +1,6 @@ - + {{ $t('profile.userAnonym') }} @@ -8,15 +8,19 @@ - {}" @mouseleave="closeMenu(true)"> - - - - {{ userSlug }} - - + + {}" + @mouseleave="closeMenu(true)" + > + + {{ userSlug }} + {{ userName | truncate(18) }} + + @@ -148,29 +152,19 @@ export default {