Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.4k views
Welcome To Ask or Share your Answers For Others

1 Answer

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'

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...