generator-nitro
Version:
Yeoman generator for the nitro frontend framework
37 lines (23 loc) • 679 B
Markdown
# Shared
This is a place for shared assets and base codefragmets you want to use
from different patterns or applications.
Recommended directory structure:
##`assets/`
This place is for assets you need in production
- images you want to minify with a gulp task (e.g. favicons, ...)
- ...
##`base/`
Use for "base patterns" like:
- base styling for html and body
- CSS normalize or reset
- webfonts definition
- ...
##`props/`
Place all your CSS custom properties here
##`utils/`
Mainly for mixins and variable definitions.
- responsive concept with breakpoints
- color system
- grid definition and helpers
- typography mixins
- ...