You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: