My SCSS skills are still in the early stages, as I'm currently diving into the basics.
I'm curious to know whether it's possible to access variables and mixins from a parent file in a child module. To better explain, here's an example:
File: app.scss
@use base;
$main_color: red;
File: _base.scss
@use app;
body {
color: app.main_color;
}
The concept is having a main file with foundational styles that can be used by imported modules... does this work? If so, how is it accomplished?