I created a new rails project and setup bourban, neat, and bitters but the flash div isn’t getting styled by the default bitters style. I installed bitters into app/assets/stylesheets/bitters by running bitters install
in app/assets/stylesheets and moving base to bitters (i.e., mv base bitters
).
Gemfile has:
gem 'bourbon'
gem 'bitters'
gem 'neat'
gem 'refills'
app/assets/stylesheets/application.css.scss has:
@import "normalize.css";
@import "bourbon";
@import "bitters/grid-settings";
@import "neat";
@import "bitters/base";
The rendered page has:
<div class="flash success">This success should be styled</div>
<div class="flash notice">This notice should be styled</div>
<div class="flash error">This error should be styled</div>
I put a sample project which demonstrates the problem at http://github.com/cvoltz/bourban-test. Can someone tell me what I need to do to get the flash divs to be styled by the default bitters style?