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.
This commit is contained in:
lifta42 2017-12-02 14:25:24 +08:00
parent b614b0fd65
commit 3b136689ee
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}