Optimize responsive nav

this guarantees the nav list fits in this viewport range (there was a
very small range where it broke the layout)
This commit is contained in:
Jason Costello 2017-01-30 15:08:29 -08:00
parent 6941db2dae
commit dd39a11db7

View file

@ -88,3 +88,9 @@ pre {
width: 100%;
}
}
@media (min-width: 768px) and (max-width: 800px) {
#header .navbar-nav a {
font-size: 12px !important;
}
}