Container width override to accommodate nav items

This commit is contained in:
Jason Costello 2017-01-25 13:25:45 -08:00
parent dee792f157
commit 6941db2dae
1 changed files with 2 additions and 2 deletions

View File

@ -83,8 +83,8 @@ pre {
} }
//fixed grid below 992 to prevent smaller responsive sizes //fixed grid below 992 to prevent smaller responsive sizes
@media (max-width: 992px) { @media (min-width: 768px) and (max-width: 992px) {
.container{ .container{
max-width: 970px; width: 100%;
} }
} }