diff --git a/app/assets/stylesheets/views/article.scss b/app/assets/stylesheets/views/article.scss index 34500c524..7dae2ca2b 100644 --- a/app/assets/stylesheets/views/article.scss +++ b/app/assets/stylesheets/views/article.scss @@ -63,6 +63,8 @@ &__header { margin-bottom: var(--article-padding-y); + overflow-wrap: anywhere; + word-break: break-word; &__meta { padding: var(--article-padding-y) var(--article-padding-x) 0 diff --git a/app/views/dashboards/followers.html.erb b/app/views/dashboards/followers.html.erb index b2ddff2db..d284a4d0f 100644 --- a/app/views/dashboards/followers.html.erb +++ b/app/views/dashboards/followers.html.erb @@ -19,7 +19,7 @@ <% @follows.each do |follow| %> <% user = follow.follower %> <% if user %> -
+
<%= user.username %> profile image diff --git a/app/views/dashboards/following_organizations.html.erb b/app/views/dashboards/following_organizations.html.erb index 24b577537..b26fb03a7 100644 --- a/app/views/dashboards/following_organizations.html.erb +++ b/app/views/dashboards/following_organizations.html.erb @@ -19,7 +19,7 @@
<% @followed_organizations.each do |follow| %> <% organization = follow.followable %> -
+
diff --git a/app/views/dashboards/following_podcasts.html.erb b/app/views/dashboards/following_podcasts.html.erb index 91a40a61a..671f2a2e7 100644 --- a/app/views/dashboards/following_podcasts.html.erb +++ b/app/views/dashboards/following_podcasts.html.erb @@ -19,7 +19,7 @@
<% @followed_podcasts.each do |follow| %> <% podcast = follow.followable %> -
+
diff --git a/app/views/dashboards/following_tags.html.erb b/app/views/dashboards/following_tags.html.erb index faf6d76e3..7a8f9f97b 100644 --- a/app/views/dashboards/following_tags.html.erb +++ b/app/views/dashboards/following_tags.html.erb @@ -26,7 +26,7 @@ <% tag = follow.followable %> <% if tag %> <% color = HexComparer.new([tag.bg_color_hex || "#0000000", tag.text_color_hex || "#ffffff"]).brightness(0.8) %> -
+

#<%= tag.name %> diff --git a/app/views/dashboards/following_users.html.erb b/app/views/dashboards/following_users.html.erb index 654a323cc..5200915ed 100644 --- a/app/views/dashboards/following_users.html.erb +++ b/app/views/dashboards/following_users.html.erb @@ -20,7 +20,7 @@ <% @follows.each do |follow| %> <% user = follow.followable %> <% if user %> -
+
<%= user.username %> profile image