diff --git a/app/assets/stylesheets/custom.scss b/app/assets/stylesheets/custom.scss index 524c9e4..4ef0926 100644 --- a/app/assets/stylesheets/custom.scss +++ b/app/assets/stylesheets/custom.scss @@ -28,7 +28,7 @@ h6 { } a { - color: #343A40; + color: white; } a:hover { diff --git a/app/views/employees/index.html.erb b/app/views/employees/index.html.erb index d4f770f..9719807 100644 --- a/app/views/employees/index.html.erb +++ b/app/views/employees/index.html.erb @@ -1,3 +1,5 @@ +

Funcionários Ativos

+ <% @employees.each do |employee| %>
  • <%= link_to employee.name, employee %>
  • <% end %> \ No newline at end of file diff --git a/app/views/employees/unactives.html.erb b/app/views/employees/unactives.html.erb index d4f770f..61cb16c 100644 --- a/app/views/employees/unactives.html.erb +++ b/app/views/employees/unactives.html.erb @@ -1,3 +1,5 @@ +

    Funcionários Inativos

    + <% @employees.each do |employee| %>
  • <%= link_to employee.name, employee %>
  • <% end %> \ No newline at end of file diff --git a/app/views/home/index.html.erb b/app/views/home/index.html.erb index b4bda9d..9d37940 100644 --- a/app/views/home/index.html.erb +++ b/app/views/home/index.html.erb @@ -3,7 +3,7 @@

    Esperto Fit

    Gestão de rede de academias

    -

    <%= link_to 'Matrícule-se', new_client_path %>

    +

    <%= link_to 'Matrícule-se', new_client_path, class:'text-white' %>

    <%= image_tag 'logo espertofit CompactWhite', class:'jumbotron-logo' %> diff --git a/app/views/plans/management.html.erb b/app/views/plans/management.html.erb index d91caf3..eb343c2 100644 --- a/app/views/plans/management.html.erb +++ b/app/views/plans/management.html.erb @@ -7,7 +7,7 @@ <% @plans.each do |plan| %>
    -

    <%= link_to plan.name, plan %>

    +

    <%= link_to plan.name, plan, style: 'color: black;' %>


    Resumo:
    <%= "Permanência mínima: #{plan.minimum_permanence} meses" %>