-
vue-bootstrap b-form-group label style이슈 기록 2021. 6. 1. 20:32
b-form-group의 label 사이즈를 sm으로 설정해도 유구 사항보다 font-size가 너무 큰 문제가 발생
font-size를 변경하려고 시도하였으나 일반적인 방법으로는 css가 먹히지 않았다.
우리 회사는 scss를 사용하고 있었고
b-form-group에 class="input-container"를 주어
.input-container {
& /deep/ label {
font-size: $fontSize-default;
}
}
로 문제를 해결
해당 문서
https://vue-loader.vuejs.org/guide/scoped-css.html#child-component-root-elements
'이슈 기록' 카테고리의 다른 글
nestjs cli new npm install --slient 에러 (0) 2023.01.23 vue bootstrap b-badge b-toast 렌더링 문제 (0) 2021.06.01 You're caching 'node_modules' but are not caching this path: /home/runner/.cache/Cypress (0) 2021.04.20 vue3 git pages 새로고침 시 404 에러 (0) 2021.04.19 html inline-block 공백처리 (0) 2020.10.30