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:
parent
b614b0fd65
commit
3b136689ee
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue