forked from AkkomaGang/akkoma-fe
Merge branch 'fix/avatar-clickable-areas' into 'develop'
Adjust the clickable areas around avatars See merge request !98
This commit is contained in:
commit
3ab9b477f8
2 changed files with 10 additions and 9 deletions
|
@ -8,9 +8,11 @@
|
|||
</div>
|
||||
<div class="panel-body base03-border">
|
||||
<div v-for="notification in visibleNotifications" :key="notification" class="notification" :class='{"unseen": !notification.seen}'>
|
||||
<a :href="notification.action.user.statusnet_profile_url">
|
||||
<div>
|
||||
<a :href="notification.action.user.statusnet_profile_url" target="_blank">
|
||||
<img class='avatar' :src="notification.action.user.profile_image_url_original">
|
||||
</a>
|
||||
</div>
|
||||
<div class='text' style="width: 100%;">
|
||||
<div v-if="notification.type === 'favorite'">
|
||||
<h1>
|
||||
|
|
|
@ -194,10 +194,9 @@
|
|||
}
|
||||
|
||||
.media-left {
|
||||
margin: 0.2em 0.3em 0 0;
|
||||
img {
|
||||
margin-top: 0.2em;
|
||||
float: right;
|
||||
margin-right: 0.3em;
|
||||
border-radius: 5px;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue