Skip to content

Commit a3863f1

Browse files
committed
wip: restore full width
During the bootstrap 5 update in 6878670 (railsadminteam#3455) this class was changed from `content` to `container`. The `container` class, unlike `content`, has a max width of 1320px. Restore prior behavior of using the full width by using `container-fluid` to avoid wasted whitespace.
1 parent 72b9078 commit a3863f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/views/layouts/rails_admin/application.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<%= render "layouts/rails_admin/sidebar_navigation" %>
1515
</div>
1616
<div class="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2">
17-
<div class="container">
17+
<div class="container-fluid">
1818
<%= render template: 'layouts/rails_admin/content' %>
1919
</div>
2020
</div>

0 commit comments

Comments
 (0)