New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

react-scrollpad

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-scrollpad

ScrollPad react component - detects scroll and pads the content from browser's scroll bar

0.1.1
Source
npm
Version published
Weekly downloads
13
550%
Maintainers
1
Weekly downloads
 
Created
Source

react-scrollpad

<ScrollPad/> - get scrollbar with padding (when overflown)

Usage

import React from 'react';
import {render} from 'react-dom';

import ScrollPad from 'react-scrollpad';

const App = () => (
  <div className="wrapper">

    <ScrollPad>

      <div>
        <p>Scroll</p>
        <p>Scroll</p>
        <p>Scroll</p>
        ...
      </div>

    </ScrollPad>

  </div>
);

render(<App/>, document.getElementById("root"));

Available props

proptypedefault
stylePropTypes.object{}
rtlPropTypes.boolfalse
padPropTypes.string20px
classNamePropTypes.string

Demo

https://sanusart.github.io/react-scrollpad/

Keywords

react

FAQs

Package last updated on 06 Sep 2018

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