Skip to content

Commit f1cd9f5

Browse files
committed
Fixes rust-lang/book#29 where the navigation arrow for next chapter was displayed on top of the scroll bar making it unusable
1 parent 95d82a9 commit f1cd9f5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/theme/book.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ h3 {
222222
left: 0;
223223
}
224224
.next {
225-
right: 0;
225+
right: 15px;
226226
}
227227
.theme-popup {
228228
position: fixed;

src/theme/stylus/nav-icons.styl

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020
.mobile-nav-chapters { display: none }
2121
.nav-chapters:hover { text-decoration: none }
2222
.previous { left: 0 }
23-
.next { right: 0 }
23+
.next { right: 15px }

0 commit comments

Comments
 (0)