Skip to content

Commit c681ea6

Browse files
authored
[Docs] Fix large vertical space at top of pages (llvm#81599)
This fixes a large vertical blank space at the top of the page that was caused by the floating sidebar.
1 parent bf471c9 commit c681ea6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

llvm/docs/_themes/llvm-theme/static/llvm-theme.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ body {
2626
border: 1px solid #aaa;
2727
margin: 0px 80px 0px 80px;
2828
min-width: 740px;
29+
position: relative;
2930
}
3031

3132
div.logo {
@@ -94,9 +95,11 @@ div.sphinxsidebar {
9495
margin: 0;
9596
padding: 0.5em 15px 15px 0;
9697
width: 210px;
97-
float: right;
9898
font-size: 1em;
9999
text-align: left;
100+
float: none;
101+
position: absolute;
102+
right: 0;
100103
}
101104

102105
div.sphinxsidebar h3, div.sphinxsidebar h4 {

0 commit comments

Comments
 (0)