From 721e6c586fff8e45e5ced4a5b1160f397bec1cdd Mon Sep 17 00:00:00 2001 From: Artur Beljajev Date: Tue, 10 Oct 2017 11:15:49 +0300 Subject: [PATCH] Fix registrar navbar UI #599 --- app/views/registrar/base/_current_user.html.erb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/views/registrar/base/_current_user.html.erb b/app/views/registrar/base/_current_user.html.erb index 01dc5262b..75d159bfb 100644 --- a/app/views/registrar/base/_current_user.html.erb +++ b/app/views/registrar/base/_current_user.html.erb @@ -1,4 +1,5 @@ <% current_user_presenter = UserPresenter.new(user: current_user, view: self) %> -<%= link_to current_user_presenter.login_with_role, registrar_profile_path, id: 'registrar-profile-btn' %> +<%= link_to current_user_presenter.login_with_role, registrar_profile_path, id: 'registrar-profile-btn', + class: 'navbar-link' %> | -<%= link_to t('.sign_out'), registrar_destroy_user_session_path, method: :delete %> +<%= link_to t('.sign_out'), registrar_destroy_user_session_path, method: :delete, class: 'navbar-link' %>