Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extra column space in mobile view #4716

Closed
wants to merge 11 commits into from
5 changes: 4 additions & 1 deletion src/sections/General/Navigation/navigation.style.js
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,10 @@ const NavigationWrap = styled.header`
}

}
@media only screen and (max-width: 912px) {


@media only screen and (max-width: 1000px) {

height: auto;
min-height: 50px;
padding: 15px 20px;
Expand Down
2 changes: 1 addition & 1 deletion src/sections/Landscape/LandscapeGrid.style.js
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ export const LandscapePageWrapper = styled.div`
display: flex;
padding: .7rem;
text-align: left;
margin-left: auto;
margin: auto;
vertical-align: middle;
border: 1px ${props => props.theme.primaryColor};
background-color: ${props => props.theme.darkJungleGreenColor};
Expand Down