Browse Source

fix(ActivityItem): styling issues with 'hide' icon

Signed-off-by: Jonathan <theflametrooper@gmail.com>
Jonathan 3 years ago
parent
commit
40cd7964cc
1 changed files with 4 additions and 1 deletions
  1. 4 1
      frontend/src/pages/Profile/tabs/RecentActivity.vue

+ 4 - 1
frontend/src/pages/Profile/tabs/RecentActivity.vue

@@ -21,7 +21,6 @@
 					<div slot="actions">
 						<confirm
 							v-if="userId === myUserId"
-							placement="left"
 							@confirm="hideActivity(activity._id)"
 						>
 							<a content="Hide Activity" v-tippy>
@@ -167,4 +166,8 @@ export default {
 	min-height: auto;
 	max-height: 570px;
 }
+
+.content a {
+	border-bottom: 0;
+}
 </style>