Need help upgrading to Ionic Framework 4.0? Get assistance with our Enterprise Migration Services EXPLORE NOW

Sass Variables

Improve this doc

Sass Variables allow you to define a value once and use it in multiple places. Variables begin with dollar signs and are set like CSS properties. You can change the value of the variable in one place, and all instances where it is used will be changed, too. For example, if you wanted to set the same height for two different selectors, you could create a variable called $control-height:

$control-height: 40px;

Then, you can use this variable in multiple places. For simplicity’s sake, let’s assign $control-height to the height attribute of two selectors:

.header {
  height: $control-height;
}

.sub-header {
  height: $control-height;
}

When translated to CSS, it becomes the following:

.header {
  height: 40px;
}

.sub-header {
  height: 40px;
}

This is extremely useful if you decide later on that you would like to change the value of $control-height, and it is being used by multiple selectors. Instead of sifting through all of your code to find the places to change, you only have to update the $control-height variable.

Sass variables go hand in hand with Ionic. With some CSS frameworks, you have to create a new stylesheet and override their styles to change the look of your application. In Ionic, you can modify the Sass directly, so that the CSS file that gets generated has the customization you want.

Learn how you can override Ionic’s Sass variables in order to get a custom style for your app in the Overriding Ionic Sass Variables section.

API

Native

General