Files
fizzy/app/views/notifications/_notification.html.erb
T
2025-01-14 10:21:47 +00:00

13 lines
484 B
Plaintext

<%= notification_tag notification do %>
<div class="notification__content border-radius borderless pad shadow fill-white flex align-start txt-align-start gap-half">
<div class="avatar txt-small">
<%= avatar_image_tag(notification.creator) %>
</div>
<div class="flex flex-column txt-tight-lines">
<strong><%= notification.title %></strong>
<%= notification.body %> · <%= time_ago_in_words(notification.created_at) %> ago
</div>
</div>
<% end %>