2017-10-05 1 views
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에서 버튼의 보조 색상을 참조 할 수 있습니다 :이에 의해 대체 된 것 같다? 그것이 가장 좋은 방법,하지만 난 사용하여 필요한 값을 가지고있는 경우

+0

을, 이것은 변경이 된에 풀 요청입니다. co.kr/twbs/bootstrap/pull/22836 – sigbjornlo

답변

1

확실하지 :은 https : // GitHub의 미래 참고로

color: map-get($theme-colors, secondary); 
+1

'theme-color ("secondary")'는 어쩌면 가독성 측면에서 조금 더 명확 할 것입니다. 왜냐하면 ofc는 당신이 한 일을 정확하게 수행하지만, $ theme-colors에서 map-get을합니다. – sigbjornlo