Answers for "how to use sass variables"

CSS
3

watch scss to css

sass --watch scss:css
Posted by: Guest on April-27-2020
5

scss variables

$base-color: #c6538c;
Posted by: Guest on January-22-2020
5

scss variables

$base-color: #c6538c;
$border-dark: rgba($base-color, 0.88);

.alert {
  border: 1px solid $border-dark;
}
Posted by: Guest on June-24-2020
1

variables scss

// SCSS variables

$darkcolor: #605C4D;
$large: 350px;

section{
	background-color: $darkcolor;
  	height: $large;
}
Posted by: Guest on September-21-2020
-2

scss variables

$variable: 1;
Posted by: Guest on October-01-2020

Browse Popular Code Answers by Language