We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In popup.scss, the variable $max-height doesn't have the !default, which prevents it to be overwrited via custom variables.
So without the !default i cannot do this:
@use "~react-widgets/scss/styles.scss" with ( $widget-border-radius: $input-border-radius, $widget-border-color: $input-border-color, $widget-focus-box-shadow: $input-focus-box-shadow, $max-height: 400px );
As I get the following error:
Module build failed (from ./node_modules/mini-css-extract-plugin/dist/loader.js): ModuleBuildError: Module build failed (from ./node_modules/sass-loader/dist/cjs.js): SassError: This variable was not declared with !default in the @used module. ╷ 5 │ $max-height: 400px │ ^^^^^^^^^^^^^^^^^^ ╵
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In popup.scss, the variable $max-height doesn't have the !default, which prevents it to be overwrited via custom variables.
So without the !default i cannot do this:
As I get the following error:
The text was updated successfully, but these errors were encountered: