Socket
Socket
Sign inDemoInstall

react-remove-scroll-bar

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-remove-scroll-bar

Removes body scroll without content _shake_


Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created

What is react-remove-scroll-bar?

The react-remove-scroll-bar package is designed to remove the scroll bar from the page or a specific element without affecting the page layout. It is useful for creating modals, full-screen menus, or other overlay components where you want to prevent background scrolling while the overlay is active.

What are react-remove-scroll-bar's main functionalities?

Remove scroll bar from the entire page

This code sample demonstrates how to remove the scroll bar from the entire page by simply including the <RemoveScrollBar /> component in your application.

import { RemoveScrollBar } from 'react-remove-scroll-bar';

function App() {
  return (
    <>
      <RemoveScrollBar />
      {/* rest of your application */}
    </>
  );
}

Remove scroll bar with gap compensation

This code sample shows how to remove the scroll bar and compensate for the gap that might be left using the 'margin' mode, which adjusts the margin of the body element to fill the space where the scroll bar was.

import { RemoveScrollBar } from 'react-remove-scroll-bar';

function App() {
  return (
    <>
      <RemoveScrollBar gapMode='margin' />
      {/* rest of your application */}
    </>
  );
}

Other packages similar to react-remove-scroll-bar

Keywords

FAQs

Package last updated on 03 May 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc