-
Vue 프로젝트 Container 너비 사용자 지정프로젝트/영화 검색 (Vue) 2021. 8. 7. 05:36
Vue 프로젝트 Container 너비 사용자 지정
1. /src/scss/main.scss 수정
// Default variable overrides $primary: #FDC000; $container-max-widths: ( sm: 540px, md: 704px, lg: 924px, xl: 1140px, xxl: 1364px ); // Required @import "../../node_modules/bootstrap/scss/functions"; @import "../../node_modules/bootstrap/scss/variables"; @import "../../node_modules/bootstrap/scss/mixins"; @import "../../node_modules/bootstrap/scss/bootstrap";
2. /src/components/MovieList.vue 수정
... 생략 <style lang="scss" scoped> @import "~/scss/main"; .container { margin-top: 30px; .inner { background-color: $gray-200; padding: 10px 0; border-radius: 4px; } .movies { ...생략 } } </style>
참고
https://getbootstrap.com/docs/5.1/layout/containers/
Containers
Containers are a fundamental building block of Bootstrap that contain, pad, and align your content within a given device or viewport.
getbootstrap.com
'프로젝트 > 영화 검색 (Vue)' 카테고리의 다른 글
Vue 프로젝트 Footer (0) 2021.08.07 Vue 프로젝트 에러 메시지 출력과 로딩 애니메이션 (0) 2021.08.07 Vue 프로젝트 영화 아이템 - 텍스트 말줄임 표시와 배경 흐림 처리 (0) 2021.08.06 Vue 프로젝트 영화 아이템 - 기본 출력 (0) 2021.08.06 Vue 프로젝트 영화 검색 코드 리팩토링 (0) 2021.08.06