-
Notifications
You must be signed in to change notification settings - Fork 16
Description
If you want to remove these bars
So it becomes like this
Here's the fix
Navigate to your mangareader folder, inside that folder should be a folder also called mangareader. Open it. There should be a folder called build, open it. Once there, there should be a file called styles.css. Open that file, you can open the file in notepad if you like. Once opened, go to the bottom of the file and paste this in there. Do paste the entire thing. Save the file and you should be good to go.
/* Hide scrollbar */
::-webkit-scrollbar {
display: none;
}
/* For Firefox */
html {
scrollbar-width: none;
}
/* If you want to customize the scrollbar appearance /
/ For WebKit browsers (like Chrome and Safari) */
::-webkit-scrollbar {
width: 0;
height: 0;
}
/* For Firefox */
html {
scrollbar-width: none;
}
/* For IE and Edge */
- {
-ms-overflow-style: none;
}
That is all. Hope that helps!

