reduce padding in nav, space items, remove font weight (#3187)

This commit is contained in:
Peter 2017-05-19 18:05:01 -04:00 committed by Misty Stanley-Jones
parent c69c3974db
commit 472334230b
1 changed files with 28 additions and 0 deletions

View File

@ -198,6 +198,34 @@
}
}
@media only screen
and (min-device-width: 320px)
and (max-device-width: 372px)
and (orientation: portrait) {
.nav-secondary-tabs {
> .container-fluid {
padding-left: 5px;
padding-right: 5px;
}
}
.tabs {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
justify-content: space-between;
width: 100%;
padding: 5px 0 0 0;
}
.tabs li a {
padding: 15px 0 10px 0;
margin-left: 0;
font-weight: normal;
}
}
/* Landscape */
@media only screen
and (min-device-width: 320px)