Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

sass - Override variables in nested module

Tried many different ways but doesn't seem to work. Hoping someone can shed some light on this

This is what I'm trying to achieve and _variable.scss / _base.scss are coming from a library so I can't modify them

_variables.scss
$color: red !default;

_base.scss
@use 'variable' as base-variable;
.test {
  color: base-variable.$color;
}

my-component.scss
@use '_base'; // I want to modify the color in this file, how should it be done?

**expected output
.test {
  color: **another color**;
}
question from:https://stackoverflow.com/questions/65661284/override-variables-in-nested-module

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I finally figured it out, you can override the whole imported module.

my-component

@use 'variable' as base-variable with (
  $color: 'another-color'
);
@use '_base'

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...