Answers for "how to declare a global variable in Scss"

CSS
0

how to declare a global variable in Scss

/*Use the keyword PRECEDED by exclamation(!) i.e;"!global"*/
/*Refer to the example below*/

  $myColor: green !global;
  color: $myColor;
Posted by: Guest on July-25-2021

Code answers related to "how to declare a global variable in Scss"

Browse Popular Code Answers by Language