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

Fix anchor overlapping with text above in #2207 #2209

Merged
merged 1 commit into from
Nov 19, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion help/content/assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,14 @@ section.is-small {

.content .anchor {
text-decoration: none;
padding-top: 70px;
}

.content .anchor::before {
content: "";
display: block;
height: 50px;
sliepie marked this conversation as resolved.
Show resolved Hide resolved
margin: -50px 0 0;
sliepie marked this conversation as resolved.
Show resolved Hide resolved
visibility: hidden;
}

@media screen and (max-width: 768px) {
Expand Down