ブートストラップで列幅をオーバーライドしようとしています。bootstrap_and_overrides.less で提案されているように、これは私がそれらをオーバーライドすることになっている場所です:
// Since bootstrap was imported above you have access to its mixins which
// you may use and inherit here
//
// If you'd like to override bootstrap's own variables, you can do so here as well
// See http://twitter.github.com/bootstrap/less.html for their names and documentation
// Example:
// @linkColor: #ff0000;
@gridColumnWidth : 55px;
@gridGutterWidth: 43px;
サーバーを再起動してページをリロードすると、生成された css は変更されず、スパン幅は変更されません。
変更を有効にするには、less ファイルを再コンパイルする必要がありますか? それ、どうやったら出来るの?
前もって感謝します!