Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Here's a fix for the Navigation Scroll Bars #29

Open
Qays12 opened this issue Apr 15, 2024 · 0 comments
Open

Here's a fix for the Navigation Scroll Bars #29

Qays12 opened this issue Apr 15, 2024 · 0 comments

Comments

@Qays12
Copy link

Qays12 commented Apr 15, 2024

If you want to remove these bars

scroll bars

So it becomes like this

no scroll bars

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!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant