I am working on a ruby on rails projects using rails 3.2 and bootstrap 3. The gem i am using is bootstrap-sass and it is the most current one. I am trying to change the default attributes of bootstrap's components in my stylesheets file. In the gem's documentation, it stated that I can change certain things of bootstrap before I use the:
@import "bootstrap";
i wanted to create a black border around bootstrap's thumbnails and make the
black by default.
So before the import statement, I added:
$thumbnail-border: #000000 5px; $hr-border: #000000;
Then, I placed the variables in the appropriate bootstrap classes and I get nothing. Any help would be much appreciated.