Yogesh Chauhan's Blog

Default Values in SCSS (Sass)

in SCSS on May 9, 2021

When you define a variable in SCSS (Sass) and change the value of it, the value gets overwritten.

If you want to set the variables value dynamically using an user input, there is a way.

You can use !default flag to do so.

The !default flag only assigns a value to a variable if the variable is not defined or the value for the variable is null.

It is basically like adding an if-else statement but in a really short and quick way.

You can configure variables with !default flag when you load a module using @use rule.

To do so, write @use with (: , : ). The new values in configuration will override the default values.

You need to write those variables with !default tag at the top of the stylesheet. Only those variables will be configured.

Example


// _alert.scss
$border-radius: 10px !default;

.alert {
  border-radius: $border-radius;
}


// style.scss
@use 'alert' with (
  $border-radius: 15px
);

Compiled CSS


.alert {
  border-radius: 15px;
}


Most Read

#1 Solution to the error “Visual Studio Code can’t be opened because Apple cannot check it for malicious software” #2 How to add Read More Read Less Button using JavaScript? #3 How to check if radio button is checked or not using JavaScript? #4 Solution to “TypeError: ‘x’ is not iterable” in Angular 9 #5 PHP Login System using PDO Part 1: Create User Registration Page #6 How to uninstall Cocoapods from the Mac OS?

Recently Posted

#Apr 8 JSON.stringify() in JavaScript #Apr 7 Middleware in NextJS #Jan 17 4 advanced ways to search Colleague #Jan 16 Colleague UI Basics: The Search Area #Jan 16 Colleague UI Basics: The Context Area #Jan 16 Colleague UI Basics: Accessing the user interface
You might also like these
How to remove a specific item from an array in JavaScript?JavaScriptWhat’s a repository on Github?MiscellaneousHow to Make CSS Lists Bullets Smaller?CSSIN Operator in PostgreSQLPostgresLearn to Make a Simple Contact Us Form using PHP and PDO-MySQLPHPfirst-of-type and last-of-type selectors in CSSCSSHow to concatenate variable with string in Swift?SwiftThe Difference Between isNaN() Method And isNaN() Function In JavaScriptJavaScriptThe * arithmetic operator in Envision BasicEnvision BasicHow to link/add CSS file to HTML Document?CSSHow to install PuTTY on a MacOS?MiscellaneousSlider animation using CSS transform propertyCSS