diff --git a/app/controllers/auth/confirmations_controller.rb b/app/controllers/auth/confirmations_controller.rb index c28c7471..089ae5cf 100644 --- a/app/controllers/auth/confirmations_controller.rb +++ b/app/controllers/auth/confirmations_controller.rb @@ -25,7 +25,7 @@ class Auth::ConfirmationsController < Devise::ConfirmationsController end def set_body_classes - @body_classes = 'lighter' + @body_classes = '' end def user_params diff --git a/app/controllers/auth/passwords_controller.rb b/app/controllers/auth/passwords_controller.rb index 34b98da5..cf2b17c8 100644 --- a/app/controllers/auth/passwords_controller.rb +++ b/app/controllers/auth/passwords_controller.rb @@ -16,7 +16,7 @@ class Auth::PasswordsController < Devise::PasswordsController end def set_body_classes - @body_classes = 'lighter' + @body_classes = '' end def reset_password_token_is_valid? diff --git a/app/controllers/auth/registrations_controller.rb b/app/controllers/auth/registrations_controller.rb index d3f4e5b9..6dc38582 100644 --- a/app/controllers/auth/registrations_controller.rb +++ b/app/controllers/auth/registrations_controller.rb @@ -88,7 +88,7 @@ class Auth::RegistrationsController < Devise::RegistrationsController end def set_body_classes - @body_classes = %w(edit update).include?(action_name) ? 'admin' : 'lighter' + @body_classes = %w(edit update).include?(action_name) ? 'admin' : '' end def set_invite diff --git a/app/controllers/auth/sessions_controller.rb b/app/controllers/auth/sessions_controller.rb index 72bd4ff1..686e154c 100644 --- a/app/controllers/auth/sessions_controller.rb +++ b/app/controllers/auth/sessions_controller.rb @@ -113,7 +113,7 @@ class Auth::SessionsController < Devise::SessionsController end def set_body_classes - @body_classes = 'lighter' + @body_classes = '' end def home_paths(resource)