Answers for "sass variables in apply"

CSS
5

variables in sass

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

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

variables in sass

$white:: #fff;

body {
  color: $white;
}
Posted by: Guest on October-29-2021

Browse Popular Code Answers by Language