Skip to content

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

@Qays12

Description

@Qays12

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!

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions