1
_custom.scss
파일에 변수 $btn-secondary-color
을 사용하고 있었지만이 변수는 부트 스트랩 4 베타에 없습니다.
// _variables.scss
$theme-colors: (
primary: $blue,
secondary: $gray-600,
success: $green,
info: $cyan,
warning: $yellow,
danger: $red,
light: $gray-100,
dark: $gray-800
) !default;
// _buttons.scss
@each $color, $value in $theme-colors {
.btn-#{$color} {
@include button-variant($value, $value);
}
}
그래서 어떻게 내 코드를 수정하고
_custom.scss
에서 버튼의 보조 색상을 참조 할 수 있습니다 :이에 의해 대체 된 것 같다? 그것이 가장 좋은 방법,하지만 난 사용하여 필요한 값을 가지고있는 경우
을, 이것은 변경이 된에 풀 요청입니다. co.kr/twbs/bootstrap/pull/22836 – sigbjornlo