Skip to content

Commit

Permalink
add changes to the players
Browse files Browse the repository at this point in the history
  • Loading branch information
ger619 committed Apr 30, 2024
1 parent 7cb2062 commit fc5b7b3
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions app/views/team/_coach.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<% end %>
<div class="flex justify-between p-3 bg-[#ffffff]">
<div class="flex flex-col">
<p class="self-start"><%= team.first_name %></p>
<p class="self-start font-semibold text-2xl"><%= team.last_name %></p>
<p class="self-start font-extralight uppercase"><%= team.first_name %></p>
<p class="self-start font-semibold text-2xl capitalize"><%= team.last_name %></p>
</div>
<p class="text-5xl"><%= team.jersey_number %></p>
</div>
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 @@ -12,7 +12,7 @@
<% end %>
<div class="flex justify-between p-3 bg-[#ffffff]">
<div class="flex flex-col">
<p class="self-start"><%= team.first_name %></p>
<p class="self-start font-extralight uppercase"><%= team.first_name %></p>
<p class="self-start font-semibold text-2xl"><%= team.last_name %></p>
</div>
<p class="text-5xl"><%= team.jersey_number %></p>
Expand Down
4 changes: 2 additions & 2 deletions app/views/team/_forward.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<% end %>
<div class="flex justify-between p-4 bg-[#ffffff]">
<div class="flex flex-col">
<p class="self-start font-extralight"><%= team.first_name %></p>
<p class="self-start font-semibold text-2xl"><%= team.last_name %></p>
<p class="self-start font-extralight uppercase"><%= team.first_name %></p>
<p class="self-start font-semibold text-2xl capitalize"><%= team.last_name %></p>
</div>
<p class="text-5xl font-extrabold"><%= team.jersey_number %></p>
</div>
Expand Down
4 changes: 2 additions & 2 deletions app/views/team/_goalkeeper.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<% end %>
<div class="flex justify-between p-4 bg-[#ffffff]">
<div class="flex flex-col">
<p class="self-start"><%= team.first_name %></p>
<p class="self-start font-semibold text-2xl"><%= team.last_name %></p>
<p class="self-start font-extralight uppercase"><%= team.first_name %></p>
<p class="self-start font-semibold text-2xl capitalize"><%= team.last_name %></p>
</div>
<p class="text-5xl"><%= team.jersey_number %></p>
</div>
Expand Down
6 changes: 3 additions & 3 deletions app/views/team/_midfielders.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
<% end %>
<div class="flex justify-between p-3 bg-[#ffffff]">
<div class="flex flex-col">
<p class="self-start"><%= team.first_name %></p>
<p class="self-start font-semibold text-2xl"><%= team.last_name %></p>
<p class="self-start font-extralight uppercase"><%= team.first_name %></p>
<p class="self-start font-semibold text-2xl capitalize"><%= team.last_name %></p>
</div>
<h1 class="text-5xl"><%= team.jersey_number %></h1>
<p class="text-5xl"><%= team.jersey_number %></p>
</div>
</div>
<% end %>
Expand Down

0 comments on commit fc5b7b3

Please sign in to comment.