We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32cc8e3 commit 83f1bf1Copy full SHA for 83f1bf1
app/helpers/application_helper.rb
@@ -176,7 +176,7 @@ def body_classes
176
output << 'system-font' if current_account&.user&.setting_system_font_ui
177
output << (current_account&.user&.setting_reduce_motion ? 'reduce-motion' : 'no-reduce-motion')
178
output << 'bigger-publish' if current_account&.user&.setting_bigger_publish
179
- output << 'wider-column' if current_account&.user&.setting_wider_column
+ output << 'wider-column' if (current_account&.user&.setting_advanced_layout && current_account&.user&.setting_wider_column)
180
output << 'rtl' if locale_direction == 'rtl'
181
output.reject(&:blank?).join(' ')
182
end
0 commit comments