如何让Bourbon Neat没有反应

时间:2013-11-03 20:51:19

标签: bourbon neat

我知道这可能听起来很奇怪,但我需要知道如何让Neat没有反应?

3 个答案:

答案 0 :(得分:2)

从整齐/网格中打开_outer-container.scss并添加max-width: $max-width替换为width: $max-width

答案 1 :(得分:0)

您的outer-container设置min-width与容器大小相同的位置。

section {
  @include outer-container;
  min-width: 1088px;
}

答案 2 :(得分:-1)

做这样的事情

<强> ie.scss

.ie8 {
    // Force IE8 to not be responsive
    //
    body {
        width: 1100px !important;
        margin: 0 auto;
    }

    * {
        max-width: none;
    }
}

<强> header.js

if (Modernizr.mq('only all')) {
// initialise only for devices
}