sass use variables from another file
//_variables.scss
$light: #f5f5f5;
$dark: ##2e3033;
//_theme.scss
@import './_variables'; //relative path to file
body {
background-color: $dark;
}
sass use variables from another file
//_variables.scss
$light: #f5f5f5;
$dark: ##2e3033;
//_theme.scss
@import './_variables'; //relative path to file
body {
background-color: $dark;
}
sass variables across files
// When importing the master, you leave out the underscore, and it
// will look for a file with the underscore. This prevents the SCSS
// compiler from generating a CSS file from it.
@import "assets/master";
// Then do the rest of my CSS afterwards:
.text { color: $accent; }
sass variables across files
// assets/_master.scss
$accent: #6D87A7;
$error: #811702;
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us