3
バックグラウンドカラーを変更するためにカラーリストをループしています。しかし、以下は失敗する。Sass Loop Through配列と現在の変数
$speech-bubble-default: $colors-chalk;
$speech-bubble-blush: $colors-blush;
$speech-bubble-brick: $colors-brick;
$speech-bubble-pink: $colors-pink;
$speech-bubble-slate: $colors-slate;
$colors-list: blush brick default pink slate;
@each $current-color in $colors-list {
&.speech-bubble--#{$current-color} {
background-color: $speech-bubble--#{$current-color};
&::after {
border-bottom-color: $speech-bubble--#{$current-color};
}
}
}
'Error: Undefined variable: "$speech-bubble--"
ループでこの作業を取得する方法はありますか?