터미널 : npm install node-sass
name.sass 파일 생성 후 name.sass파일을 적용할 곳에 @import './Name.scss'; 해준다.
div.container {
h4{
color : blue;
}
p {
color: green;
}
}
@mixin myalert {
background-color: #eeeeee;
padding: 20px;
border-radius: 5px;
max-width: 800px;
width: 100%;
margin: auto;
p {
margin-bottom: 0;
}
}
.box{
@include myalert()
add optional style
}
자주 쓰이는 샐랙터의 style을 그대로 가져오는
extend 기능도 있다.