Answers for "select the correct way of defining a variable in sass"

CSS
6

sass variable

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

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

Code answers related to "select the correct way of defining a variable in sass"

Browse Popular Code Answers by Language