Sass
Intro
- Sass is an extension to CSS
Course
Setup
Sass files cannot be used directly
Include compiled
styles.css
inindex.html
<link rel="stylesheet" href="styles.css">
VS Code
- Install
Live Sass Compiler
extension - Click on
Watch Sass
button in the bottom bar - Extension will convert ALL
.scss
files into corresponding.css
files
- Install
npm
- Install sass globally or use npx to compile
.scss
or.sass
into.css
file - Global
npm i -g sass
sass styles.scss styles.css
- npx
npx sass styles.scss styles.css
- Install sass globally or use npx to compile
node-sass
React Setup
Angular Setup