Skip to content

Commit

Permalink
Fix notifications overflow issue on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
pfrazee committed Mar 31, 2021
1 parent 945ce4e commit cb29d79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/js/com/notification.js
Expand Up @@ -113,7 +113,7 @@ export class Notification extends LitElement {
<div class="w-12 text-center pt-4 rounded-l leading-9 ${this.isUnread ? 'bg-blue-50' : ''}">
<span class="${icon} text-2xl ${this.isUnread ? 'text-blue-600' : 'text-gray-400'}"></span>
</div>
<div class="flex-1">
<div class="flex-1 min-w-0">
<div class="flex items-center text-sm pt-4 px-3 pb-2">
<a href="/${note.author.userId}" title=${note.author.userId}>
<img class="w-8 h-8 rounded-full object-cover mr-2" src=${AVATAR_URL(note.author.userId)}>
Expand Down

1 comment on commit cb29d79

@vercel
Copy link

@vercel vercel bot commented on cb29d79 Mar 31, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.