Debugging in the Browser with Source Maps
Jun 10 2018- POSTED BY projecth
With source maps (i.e. the .css.map files), we can use our browser’s developer tools to view the original Sass source, instead […]
Read MoreWith source maps (i.e. the .css.map files), we can use our browser’s developer tools to view the original Sass source, instead […]
Read MoreThere are many benefits to using Sass when building or refactoring responsive layouts. In this video, we’ll cover some the […]
Read MoreMixins are a smart way of reusing our code. One of the last steps in refactoring is replacing common patterns […]
Read MoreStyles File Structures The _extends.scss file contains all the placeholders that you’ll @extend in your partials. scss |__ style.scss |__ base | _index.scss | […]
Read MoreDon’t over-nest code! Refer to the following page for more details on Nested Selectors Ampersand (&)
Read MoreCommon Sass Structures The _extends.scss file contains all the placeholders that you’ll @extend in your partials. scss |__ style.scss |__ base | _index.scss | […]
Read MoreCommon Sass Structures An example would be scss |__ style.scss |__ base | _index.scss | _base.scss |__components | _index.scss | […]
Read MoreBreak related sections into partials Extract repeating patterns into extends Nest where it makes sense Create variables for repetitive values […]
Read More