Answers for "scss variables file"

CSS
1

import mixin from another file

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

scss variables

$base-color: #c6538c;
Posted by: Guest on January-22-2020
5

scss variables

$base-color: #c6538c;
$border-dark: rgba($base-color, 0.88);

.alert {
  border: 1px solid $border-dark;
}
Posted by: Guest on June-24-2020
1

sass @use not working

As of 8/2020 @use is only compatible with Dart Sass. 
Check compatibility with documentation.
https://sass-lang.com/documentation/at-rules/use
Posted by: Guest on August-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

Browse Popular Code Answers by Language