diff --git a/app/javascript/flavours/glitch/styles/monsterpit.scss b/app/javascript/flavours/glitch/styles/monsterpit.scss index 0ef995534..71b4f4910 100644 --- a/app/javascript/flavours/glitch/styles/monsterpit.scss +++ b/app/javascript/flavours/glitch/styles/monsterpit.scss @@ -7,11 +7,13 @@ font-style: italic; font-size: 12px; text-align: right; + margin-bottom: 4px; } - details.tags { + p.tags { color: lighten($dark-text-color, 20%); font-size: 12px; text-align: right; + margin-bottom: 4px; a { color: darken($secondary-text-color, 20%); @@ -23,7 +25,7 @@ p.signature { color: $dark-text-color; } - details.tags { + p.tags { color: $dark-text-color; a { diff --git a/app/lib/formatter.rb b/app/lib/formatter.rb index 326f0655b..7623f0acd 100644 --- a/app/lib/formatter.rb +++ b/app/lib/formatter.rb @@ -241,7 +241,7 @@ class Formatter unless status.tags.blank? tags = status.tags.pluck(:name).reject { |t| t.end_with?('.') }.map{ |t| "##{t}" } tags = encode_and_link_urls(tags.join(' ')) - html = "#{html}
\xf0\x9f\x8f\xb7

#{tags}

" + html = "#{html}

#{tags} \xf0\x9f\x8f\xb7

" end html.html_safe # rubocop:disable Rails/OutputSafety