Use only card classes

This commit is contained in:
Karina Kwiatek 2022-07-20 18:27:33 +02:00 committed by Karina Kwiatek
parent 7c96627106
commit 84abd1226d
1 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
%ul.list-group#notifications
- if @notifications.count.zero?
.card
%li.list-group-item.text-center
%li.card.text-center
.card-body
.notifications--none
%i.fa.fa-bell-o.notification__bell-icon
%p
@ -11,8 +11,8 @@
= t(".none")
- else
- @notifications.each do |notification|
.card
%li.list-group-item
%li.card
.card-body
.media
= render "notifications/type/#{notification.target.class.name.downcase.split('::').last}", notification: notification