Besides the Bourbon and it's Neat (grid framework) I've installed also Bitters so to have some simple predefined look and feel. However, I have trouble with overriding the styles defined in Bitters. Here is an example.
By default, all input text fields are set to width:100%
. I have a form, where I want input field to be eg 6 columns width. I am not able to write this:
.foo {
@include span-columns(6);
}
since this will be over-ruled with the 100%
rule. I can fix this by wrapping the field in another div of the above class.
Is there any better way? I would not like to add divs just because of me not being able to override the rules.