diff options
author | Sullivan SENECHAL <soullivaneuh@gmail.com> | 2015-04-26 23:32:35 +0200 |
---|---|---|
committer | Sullivan SENECHAL <soullivaneuh@gmail.com> | 2015-04-26 23:32:35 +0200 |
commit | 570594a469fe481060d312d9d90980c5f9289e2f (patch) | |
tree | 79690937a85c15f3b60a0e2da9d0dce3505eacfe | |
parent | f0c4c51f8323216bd90fb564d6b1bff1f247cf16 (diff) | |
download | gitlab-ce-570594a469fe481060d312d9d90980c5f9289e2f.tar.gz |
Fix '.container or .container-fluid should be the first child inside of a .navbar' issue
-rw-r--r-- | app/views/layouts/_head_panel.html.haml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/layouts/_head_panel.html.haml b/app/views/layouts/_head_panel.html.haml index 281ce31fe9c..8d33175ce4d 100644 --- a/app/views/layouts/_head_panel.html.haml +++ b/app/views/layouts/_head_panel.html.haml @@ -1,6 +1,6 @@ %header.navbar.navbar-fixed-top.navbar-gitlab{ class: nav_header_class } - .navbar-inner - .container + .container + .navbar-inner %div.app_logo = link_to root_path, class: "home has_bottom_tooltip", title: "Dashboard" do = brand_header_logo |