diff --git a/app/assets/stylesheets/page_bundles/work_items.scss b/app/assets/stylesheets/page_bundles/work_items.scss
index c140a13f8f2e9bf506397a96df4df0e9ddcdbd12..c5f923558d9e8759d4669b22b0828ab571996889 100644
--- a/app/assets/stylesheets/page_bundles/work_items.scss
+++ b/app/assets/stylesheets/page_bundles/work_items.scss
@@ -383,8 +383,8 @@ $disclosure-hierarchy-chevron-dimension: 1.2rem;
     width: 95% !important;
 }
 
-.limit-container-width {
+.container-limited {
   .work-item-sticky-header-text {
-    max-width: $limited-layout-width;
+    max-width: $fixed-layout-width;
   }
-}
\ No newline at end of file
+}
diff --git a/app/views/groups/work_items/show.html.haml b/app/views/groups/work_items/show.html.haml
index 6368e9977445c76808601478d823154cf4d8ca0d..7363d8f977a9b4ab3c98bd81fb10ba07b3c7deb7 100644
--- a/app/views/groups/work_items/show.html.haml
+++ b/app/views/groups/work_items/show.html.haml
@@ -3,6 +3,5 @@
 - add_page_specific_style 'page_bundles/work_items'
 - @gfm_form = true
 - @noteable_type = 'WorkItem'
-- @content_class = "limit-container-width" unless fluid_layout
 
 #js-work-items{ data: work_items_show_data(@group).merge(iid: request.params['iid']) }
diff --git a/app/views/projects/work_items/show.html.haml b/app/views/projects/work_items/show.html.haml
index d14b51561dd04d2160674999551d766348a76cfe..c69e42917f19ce7b348eecb0f94aee3233e036e4 100644
--- a/app/views/projects/work_items/show.html.haml
+++ b/app/views/projects/work_items/show.html.haml
@@ -3,6 +3,5 @@
 - add_page_specific_style 'page_bundles/work_items'
 - @gfm_form = true
 - @noteable_type = 'WorkItem'
-- @content_class = "limit-container-width" unless fluid_layout
 
 #js-work-items{ data: work_items_show_data(@project) }