Answers for "how to make a scss variable"

CSS
8

scss variable to css variable

$color-black: #000000;

body {
    --color: #{$color-black};
}
Posted by: Guest on June-07-2021
0

Sass Variables

$myFont: Helvetica, sans-serif;
$myColor: red;
$myFontSize: 18px;
$myWidth: 680px;

body {
  font-family: $myFont;
  font-size: $myFontSize;
  color: $myColor;
}

#container {
  width: $myWidth;
}
Posted by: Guest on December-06-2020
1

how to make a scss variable

$variableName = item

$gray = #404040

body{
	background:$gray; 
}
Posted by: Guest on September-10-2020

Code answers related to "how to make a scss variable"

Browse Popular Code Answers by Language