Skip to content

Commit

Permalink
boosted up logo and centered all logos
Browse files Browse the repository at this point in the history
  • Loading branch information
Claire Fernandes committed Dec 11, 2023
1 parent 0168b78 commit a19e5bb
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions app/views/pages/welcome.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,21 @@

<article id="sponsors" class="welcome md:ml-10">
<h2>Sponsors</h2>
<div class="flex flex-wrap">
<div class="flex flex-wrap justify-center">
<% sponsors.each do |sponsor| %>
<div class="m-6">
<% if sponsor['key'] == 'up' %>
<div class="m-1">
<%= link_to "/sponsors/#{sponsor['key']}" do %>
<%= image_tag "sponsors/#{sponsor['images'].first}", alt: sponsor['name'], style: "width: 190px" %>
<% end %>
</div>
<% else %>
<div class="m-6">
<%= link_to "/sponsors/#{sponsor['key']}" do %>
<%= image_tag "sponsors/#{sponsor['images'].first}", alt: sponsor['name'], style: "width: 150px" %>
<% end %>
</div>
</div>
<% end %>
<% end %>
</div>
</article>
Expand Down

0 comments on commit a19e5bb

Please sign in to comment.