Skip to content

Commit 7c8f19e

Browse files
Fix anchor targets overlay buttons (#14713)
* Fix anchor overlays buttons * Update built files
1 parent 2e19175 commit 7c8f19e

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

assets/css/bundle.css

+3-1
Original file line numberDiff line numberDiff line change
@@ -23821,7 +23821,9 @@ main blockquote p{
2382123821
content:" ";
2382223822
display:block;
2382323823
height:106px;
23824-
margin-top:-106px
23824+
margin-top:-106px;
23825+
position:absolute;
23826+
z-index:-1
2382523827
}
2382623828
}
2382723829

theme/src/scss/main.scss

+2
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,8 @@ $sitenav-offset: calc($sitenav-height + 16px);
287287
display: block;
288288
height: $sitenav-offset;
289289
margin-top: -$sitenav-offset;
290+
position: absolute;
291+
z-index: -1;
290292
}
291293
}
292294
}

0 commit comments

Comments
 (0)