I'm using the twitter-bootstrap-rails gem (https://github.com/seyhunak/twitter-bootstrap-rails) in my project. The newest version uses the current bootstrap values (base font size 14 and line height 20 ). I want to set these values back to 13 and 18. I thought it would work by putting
@baseFontSize: 13px;
@baseLineHeight: 18px;
into bootstrap_and_overrides.css.less
. But that doesn't seem to work. So how can I change them?
Thanks