CloudCannon/aviator-jekyll-template

Small cosmetic issue when changing $nav-width

TimoteusRuotsalainen opened this issue · 1 comments

I had some longer APIs that didn't fit in the default 210px wide navigation area. I enlarged the area by changing $nav-width in style.css.

This caused a small gap.
gap

I fixed it by changing the margin from 210px to read the value from the variable in _main.scss
.main {
margin: 0 0 0 $nav-width;

Good idea. Fixed on master.