Answers for "include scss"

CSS
1

import mixin from another file

@import "../../../theme/main.scss"
Posted by: Guest on July-20-2020
9

sass mixin

@mixin transform($property) {
  -webkit-transform: $property;
  -ms-transform: $property;
  transform: $property;
}
.box { @include transform(rotate(30deg)); }
Posted by: Guest on May-29-2020
0

scss include

// style.scss,  sass will discontinue @include 
@use 'foundation/code';
@use 'foundation/lists';
Posted by: Guest on October-07-2021
0

sass file

Sass is a popular preprocessor scripting language that gets compiled into css. 
There are 2 file extensions:
1) .scss (newer syntax, commonly used)
2) .sass (older syntax with strict indentation)
Learn More at https://sass-lang.com/
Posted by: Guest on September-04-2021

Browse Popular Code Answers by Language