[Vuejs]-Vue Bootstrap fluid container wrong breakpoints

0👍

The container max-widths for the various breakpoints (assuming default SCSS vars) are listed in the layout docs at https://bootstrap-vue.js.org/docs/components/layout#grid-options

0👍

make sure you have @import "~bootstrap/scss/bootstrap"; added in your custom.scss
https://bootstrap-vue.org/docs#using-custom-bootstrap-scss

This work for me.

 <b-container :fluid="'md'">
</b-container>

in inspect element it should be class="container-md"

enter image description here

Leave a comment