Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/assets/stylesheets/custom.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ h6 {
}

a {
color: #343A40;
color: white;
}

a:hover {
Expand Down
2 changes: 2 additions & 0 deletions app/views/employees/index.html.erb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
<h1>Funcionários Ativos</h1>

<% @employees.each do |employee| %>
<li><%= link_to employee.name, employee %></li>
<% end %>
2 changes: 2 additions & 0 deletions app/views/employees/unactives.html.erb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
<h1>Funcionários Inativos</h1>

<% @employees.each do |employee| %>
<li><%= link_to employee.name, employee %></li>
<% end %>
2 changes: 1 addition & 1 deletion app/views/home/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div class='jumbotron-content'>
<h1 class="display-4">Esperto Fit</h1>
<p class="lead"><h2>Gestão de rede de academias</h2></p>
<p><%= link_to 'Matrícule-se', new_client_path %></p>
<p><%= link_to 'Matrícule-se', new_client_path, class:'text-white' %></p>
</div>
<%= image_tag 'logo espertofit CompactWhite', class:'jumbotron-logo' %>
</div>
Expand Down
2 changes: 1 addition & 1 deletion app/views/plans/management.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<% @plans.each do |plan| %>
<div class="col-4">
<div class="shadow p-3 mb-5 bg-white rounded">
<h3 class="text-center"><%= link_to plan.name, plan %></h3>
<h3 class="text-center"><%= link_to plan.name, plan, style: 'color: black;' %></h3>
<hr>
<h5>Resumo:</h5>
<h6><%= "Permanência mínima: #{plan.minimum_permanence} meses" %></h6>
Expand Down