CSS / SCSS
In component
style.component.scss
Architecture
(m-btn)
module
(m-screening-package)
module
(m-steps)
module
* move in to component
(panel-on-boarding)
panel
(l-on-boarding)
layout
Architecture
Separate modules by roles and features.
Architecture
Style components
levels deep -
- words to describe a class
Avoid using more than 3...
Good / Bad practice
color: $color-primary;
color: $color-master-dark;
color: lighten($color-info, 3%);
color: $color-master-light;
color: $color-white;
Always use a default variable for colors!!!
Good / Bad practice