Answers for "scss partials"

CSS
1

import mixin from another file

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

Sass @import and Partials

@import "variables";
@import "colors";
@import "reset";

reset.scss

@import "reset";

body {
  font-family: Helvetica, sans-serif;
  font-size: 18px;
  color: red;
}
Posted by: Guest on December-06-2020
0

partials in sass

@import "colors";

body {

   
  font-family: Helvetica, sans-serif;
 
  font-size: 18px;
  color: $myBlue;
}
Posted by: Guest on September-13-2021

Browse Popular Code Answers by Language