diff --git a/app/assets/stylesheets/menu.scss b/app/assets/stylesheets/menu.scss index 40c8a65..2d6512b 100644 --- a/app/assets/stylesheets/menu.scss +++ b/app/assets/stylesheets/menu.scss @@ -14,6 +14,9 @@ $color: #777; height: 100%; padding: 20px; color: $color; + font-size: 1.875rem; + line-height: 1.4; + font-weight: 300; &:hover { text-decoration: none; @@ -36,7 +39,7 @@ $color: #777; float: right; .menu-item { - &:hover { + &.menu-item-signout:hover { background-color: red; color: white; } diff --git a/app/views/application/_menu.html.haml b/app/views/application/_menu.html.haml index 6e9f4b7..e558cc1 100644 --- a/app/views/application/_menu.html.haml +++ b/app/views/application/_menu.html.haml @@ -18,4 +18,5 @@ Zeus Notifications %span.badge= User.zeus.notifications.size .menu-list.menu-right - = link_to 'Sign out', sign_out_path, method: :delete, class: 'menu-item' + %span.menu-item= euro_from_cents current_user.balance + = link_to 'Sign out', sign_out_path, method: :delete, class: 'menu-item menu-item-signout'