Skip to content

Commit

Permalink
added changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ger619 committed Apr 25, 2024
1 parent 0c487dc commit f8edfec
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/views/team/_coach.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<% if team.image.attached? %>
<%= image_tag(team.image, class: "[h-200px]") %>
<% end %>
<div class="flex justify-between">
<div class="flex justify-between p-3 bg-[#f3f3f3]">
<div class="flex flex-col">
<h1 class="self-start"><%= team.first_name %></h1>
<h1 class="font-semibold text-2xl"><%= team.last_name %></h1>
Expand Down
2 changes: 1 addition & 1 deletion app/views/team/_defenders.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<% if team.image.attached? %>
<%= image_tag(team.image, class: "[h-200px]") %>
<% end %>
<div class="flex justify-between">
<div class="flex justify-between p-3 bg-[#f3f3f3]">
<div class="flex flex-col">
<h1 class="self-start"><%= team.first_name %></h1>
<h1 class="font-semibold text-2xl"><%= team.last_name %></h1>
Expand Down
2 changes: 1 addition & 1 deletion app/views/team/_goalkeeper.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<% if team.image.attached? %>
<%= image_tag(team.image, class: "[max-h-200px]") %>
<% end %>
<div class="flex justify-between">
<div class="flex justify-between p-3 bg-[#f3f3f3]">
<div class="flex flex-col">
<h1 class="self-start"><%= team.first_name %></h1>
<h1 class="font-semibold text-2xl"><%= team.last_name %></h1>
Expand Down
2 changes: 1 addition & 1 deletion app/views/team/_midfielders.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<% if team.image.attached? %>
<%= image_tag(team.image, class: "[h-200px]") %>
<% end %>
<div class="flex justify-between">
<div class="flex justify-between p-3 bg-[#f3f3f3]">
<div class="flex flex-col">
<h1 class="self-start"><%= team.first_name %></h1>
<h1 class="font-semibold text-2xl"><%= team.last_name %></h1>
Expand Down

0 comments on commit f8edfec

Please sign in to comment.