diff options
author | Jacob Schatz <jschatz@gitlab.com> | 2016-06-08 21:28:36 +0000 |
---|---|---|
committer | Jacob Schatz <jschatz@gitlab.com> | 2016-06-08 21:28:36 +0000 |
commit | 8578f4011a0575717ca5eee02b77bf90bd9e21e0 (patch) | |
tree | 475750c039a5c59c8d709e1a1b5146120063d7d5 /app/views/groups | |
parent | b4812e2e867d1b738fc93afb3c5e5d1fd57ccd1d (diff) | |
parent | f367582ffe275dde4a0bd5ef281fd9e93e7586e5 (diff) | |
download | gitlab-ce-8578f4011a0575717ca5eee02b77bf90bd9e21e0.tar.gz |
Merge branch '18333-layout-bug' into 'master'
Use container helper instead of hard coded container
## What does this MR do?
Add `container_class` helper class to fix layout bug
## What are the relevant issue numbers?
#18333
## Screenshots (if relevant)
Fixed:
![Screen_Shot_2016-06-08_at_2.03.38_PM](/uploads/6e7575d711efb8eaf6ba641907b2d607/Screen_Shot_2016-06-08_at_2.03.38_PM.png)
Fluid:
![Screen_Shot_2016-06-08_at_2.03.56_PM](/uploads/33d3f73781ca9ed129f853abfe9feb4b/Screen_Shot_2016-06-08_at_2.03.56_PM.png)
See merge request !4543
Diffstat (limited to 'app/views/groups')
-rw-r--r-- | app/views/groups/show.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/groups/show.html.haml b/app/views/groups/show.html.haml index 54e89a0191f..85635bc4616 100644 --- a/app/views/groups/show.html.haml +++ b/app/views/groups/show.html.haml @@ -5,7 +5,7 @@ = auto_discovery_link_tag(:atom, group_url(@group, format: :atom, private_token: current_user.private_token), title: "#{@group.name} activity") .cover-block.groups-cover-block - .container-fluid.container-limited + %div{ class: (container_class) } = link_to group_icon(@group), target: '_blank' do = image_tag group_icon(@group), class: "avatar group-avatar s70" .group-info |