frameworks - Use Bourbon with Bitters and Neat -
i want use bourbon neat , bitters next project. have installed 3 have no idea how proceed.
do use 3 folders separately in project folder or need add different imports _bourbon.scss have imports in 1 main file?
for instance, there button.scss, clearfix.scss , hide-text.scss in bourbon (in addons) , bitters (in extends) folder, aren't these going conflict when used together?
all appreciated :)
you have import files of plugins (bourbon, neat , bitters) 1 main file. button.scss, clearfix.scss , hide-text.scss won´t conflict.
this how organize project im working on:
- project |--css |--base //(bitters) |--bourbon |--neat |--application.sass |--application.css |--js |--img |--index.html
in application.sass initial code:
@import 'bourbon/bourbon' @import 'base/base' @import 'neat/neat'
so import bourbon, bitters , neat in main .sass file can start using them. can start changing default settings in base/_variables.scss
check video more info: http://www.youtube.com/watch?v=8itne_dx6cc
Comments
Post a Comment