rivsc / Beautiful-Scaffold

Rails generator for a complete and beautiful scaffold.
http://beautiful-scaffold.rivsc.ovh/
MIT License
74 stars 22 forks source link

Responsive Theme Navbar Overlaps Content When Resizing Below ~979px #18

Closed jonmchan closed 7 years ago

jonmchan commented 7 years ago

When you resize the view to below 979px, the responsive theme takes into effect and minimizes the navbar however the navbar blocks the content of the screen such that the content is behind the navbar.

The fix is simply fixing the padding-top for mobile screen size in beautiful-scaffold.css.scss:

@media (max-width: 979px) {
  .fixed + div {
    margin-left: 0;
    padding:10px;
  }
  body {
    padding-top:35px;
  }
}
rivsc commented 7 years ago

Thanks !