Answers for "how to use variables in scss in another file"

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

Code answers related to "how to use variables in scss in another file"

Browse Popular Code Answers by Language