Disable ONE of the Twitter Bootstrap responsive layouts

前端 未结 4 2169
后悔当初
后悔当初 2020-12-14 03:32

I would like to disable one of the Responsive layouts. Whatever the second smallest layout is before it switches to the mobile view.

4条回答
  •  既然无缘
    2020-12-14 04:05

    As an improvement to spinningarrow's way to do this when using LESS is to set the @gridColumnWidth768 and @gridGutterWidth768 to match @gridColumnWidth and @gridGutterWidth like so:

    @gridColumnWidth768: @gridColumnWidth;
    @gridGutterWidth768: @gridGutterWidth;
    

    As a rule, I try to leave alone vendor files and only edit them as a last resort. This allows me to fix this issue without having to edit the core bootstrap files.

提交回复
热议问题