From 19b754984e9c08516e1e03f77ebb4593739021ec Mon Sep 17 00:00:00 2001 From: Robin B Date: Sun, 31 May 2020 03:48:07 +0200 Subject: [PATCH] Add bottom padding to userbox col in moderation view As suggested by @pixeldesu --- app/views/moderation/priority.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/moderation/priority.haml b/app/views/moderation/priority.haml index 6f64fe75..16ff1274 100644 --- a/app/views/moderation/priority.haml +++ b/app/views/moderation/priority.haml @@ -6,5 +6,5 @@ #users .row.row-cols-1.row-cols-sm-2.row-cols-md-3 - @users.each do |u, c| - .col + .col.pb-3 = render 'moderation/userbox', user: u, count: (c || 0)