From 3b136689ee6c44134dc970616bf878384c4bd9b3 Mon Sep 17 00:00:00 2001 From: lifta42 Date: Sat, 2 Dec 2017 14:25:24 +0800 Subject: [PATCH] Fix a CSS bug to show arrow properly The arrow for "previous chapter" was on the incorrect position when screen width is between 1060px and 1250px. --- src/theme/book.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/theme/book.css b/src/theme/book.css index f0967be1..65397a68 100644 --- a/src/theme/book.css +++ b/src/theme/book.css @@ -251,7 +251,7 @@ table thead td { -ms-transition: left 0.5s; transition: left 0.5s; } -@media only screen and (max-width: 1060px) { +@media only screen and (max-width: 1250px) { .previous { left: 15px; }