diff --git a/app/assets/stylesheets/layout.scss b/app/assets/stylesheets/layout.scss index f33e0a3d5..0301ec535 100644 --- a/app/assets/stylesheets/layout.scss +++ b/app/assets/stylesheets/layout.scss @@ -2766,15 +2766,15 @@ table { display: inline-block; height: rem-calc(120); overflow: hidden; + width: 100%; @include breakpoint(medium) { height: rem-calc(96); } img { - margin-left: rem-calc(-15); max-width: none; - width: rem-calc(120); + width: 100%; } } diff --git a/app/views/welcome/_feeds.html.erb b/app/views/welcome/_feeds.html.erb index 489a0d74d..d8d5d03ea 100644 --- a/app/views/welcome/_feeds.html.erb +++ b/app/views/welcome/_feeds.html.erb @@ -9,6 +9,11 @@ <% feed.items.each do |item| %>
+
+ <%= link_to item.title, url_for(item) %>
+

<%= item.summary %>

+
<% if item.image.present? %>
@@ -17,11 +22,6 @@
<% end %> -
- <%= link_to item.title, url_for(item) %>
-

<%= item.summary %>

-
<% end %>