Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Body of the doc is obscured on certain screen size range #6609

Closed
sgtpepper43 opened this issue Mar 8, 2014 · 2 comments
Closed

Body of the doc is obscured on certain screen size range #6609

sgtpepper43 opened this issue Mar 8, 2014 · 2 comments

Comments

@sgtpepper43
Copy link

Between 991px and 769px (ie, about half my screen) the .sup-header obscures the main body. The top margin of the main-body-grid needs to be about 30px lower than normal (150px), and since the grid-left is at a fixed position, this needs to be lowered as well. I actually made the change in github before realizing I needed to actually go and test everything, so I'll just put what I did here:
@media only screen and (max-width : 991px) and (min-width: 769px ) {
.main-body-grid {
margin-top:150px;
}
.main-body-grid > .grid-left {
top:150px;
}
}
Also I'm not sure about how much this would actually affect so that's why I'm just posting it as a bugfix instead of a pull request.
I just realized it doesn't keep the tabs, but whatever.

@Narretz
Copy link
Contributor

Narretz commented Mar 8, 2014

Pull request #6474

you or I are off by a few pixels it seems.

@sgtpepper43
Copy link
Author

That's just a matter of taste I guess, though I should probably remove this bug if you've already got the pull request ready

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants