Skip to content

Instantly share code, notes, and snippets.

@tandavas
tandavas / main.scss
Created October 5, 2016 20:39
How to manage all of your Sass base in Angular 2
// import all the Sass base
@import "reset";
@import "typography";
@import "forms";
@tandavas
tandavas / architecture
Last active September 19, 2023 08:41
Angular 2 Sass Architecture
your-project-folder/
|
├-- src/
| ├── main.browser.ts * Entry file for our browser environment
| |
| ├── index.html * Index page
| |
| ├-- src/
| | ├── home/
| | | ├── home.component.html * Home component template
@tandavas
tandavas / _main.scss
Last active October 5, 2016 20:37
How to manage all of your Sass abstracts in Angular 2
// import all the Sass abstracts
@import "variables";
@import "functions";
@import "mixins";
@import "placeholders";
@tandavas
tandavas / footer.component.scss
Created September 25, 2016 09:20
How to include SCSS abstracts into your Angular 2 component