Closed z0mt3c closed 10 years ago
I just looked into the problem and noticed the following - it concerns the following scss code:
.navbar-nav {
margin: ($navbar-padding-vertical / 2) -$navbar-padding-horizontal;
}
Compared to less:
.navbar-nav {
margin: (@navbar-padding-vertical / 2) -@navbar-padding-horizontal;
}
No big diff - but in case of scss the result is the following :sunny::
.navbar-nav {
margin: -7.5px;
}
Again, compared to less:
.navbar-nav {
margin: 7.5px -15px;
}
Didn't have the time to look into yet but there seems to be something wrong with the dropdown navigation compared to the original tbs3:
original tbs3 example
http://getbootstrap.com/examples/navbar-fixed-top/
sass-bootstrap example
http://alademann.github.io/sass-bootstrap/examples/navbar-fixed-top/
Regards