css3 - Compiling Sass (scss) to css -


i have template - web template - editorial when added existing meteor app not load scss files, css file in client directory. though put scss files in public folder. best way can add this? because not work decided compile scss css.

sass_folder     scss_subfolder         ----base_scss_subfoler             _partial1.scss             _partial2.scss         ----components_scss_subfoler             _buttons.scss             _textbox.scss         ----layouts_scss_subfoler             _pages.scss             _footer.scss         ----libs_scss_subfoler             _functions             _vars             _skels             _mixins     main.scss     ie8.scss     ie9.scss     css_output_folder 

i have tried compile files doing on cmd: sass --update scss:css compiled main.scss, ie8.scss, ie9.scss css folder, other not compiled. how compile @ once , maintain same sub-directory folder in css folder. why , how do this? if appreciate contribution in advance.

the files names starting underscore considered partials , not compiled css files. why not seeing in output css.

please navigate section heading 'partials' in this document ... , read next 2 sections.

you can create partial sass files contain little snippets of css can include in other sass files. great way modularize css , keep things easier maintain. partial sass file named leading underscore. might name _partial.scss. underscore lets sass know file partial file , should not generated css file. sass partials used @import directive.


Comments

Popular posts from this blog

html - How to set bootstrap input responsive width? -

javascript - Highchart x and y axes data from json -

javascript - Get js console.log as python variable in QWebView pyqt -