From 5d13c6bbe4547b52c70e5b17c07019195c044e45 Mon Sep 17 00:00:00 2001 From: Anton Khorev Date: Mon, 21 Jul 2025 15:15:41 +0300 Subject: [PATCH] Use gap instead of margin in latest diaries icons --- app/views/diary_entries/_profile_diaries.html.erb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/views/diary_entries/_profile_diaries.html.erb b/app/views/diary_entries/_profile_diaries.html.erb index 562a906b3..1ff89f860 100644 --- a/app/views/diary_entries/_profile_diaries.html.erb +++ b/app/views/diary_entries/_profile_diaries.html.erb @@ -12,12 +12,12 @@

<%= truncate(strip_tags(entry.body.to_html), :length => 150) %>

- - <%= inline_svg_tag "diary/comment.svg", :class => "me-1", :title => t(".comments_label") %> + + <%= inline_svg_tag "diary/comment.svg", :title => t(".comments_label") %> <%= link_to t(".comments", :count => entry.comments.size), diary_entry_path(@user, entry, :anchor => "comments"), :class => "text-body-secondary" %> - - <%= inline_svg_tag "diary/date.svg", :class => "me-1", :title => t(".date_label") %> + + <%= inline_svg_tag "diary/date.svg", :title => t(".date_label") %> <%= l(entry.created_at.to_date, :format => :long) %>
-- 2.39.5