Bootstrap styles are not applied with the following Gemfile:
# Views
gem 'devise-bootstrap-views', '~> 1.0.0.alpha1'
# I18n
gem 'devise-i18n'
However, it works if the gem is listed after devise-i18n:
# I18n
gem 'devise-i18n'
# Views
gem 'devise-bootstrap-views', '~> 1.0.0.alpha1'
It seems that devise-i18n is overriding views from devise-bootstrap-views. It should be fixed somehow or mentioned in README.
Bootstrap styles are not applied with the following Gemfile:
However, it works if the gem is listed after devise-i18n:
It seems that devise-i18n is overriding views from devise-bootstrap-views. It should be fixed somehow or mentioned in README.