An open API service indexing awesome lists of open source software.

https://github.com/mvsde/scrollbar-width

Calculate the scrollbar width
https://github.com/mvsde/scrollbar-width

Last synced: 5 months ago
JSON representation

Calculate the scrollbar width

Awesome Lists containing this project

README

        

# Scrollbar width

## Installation

```bash
yarn add @mvsde/scrollbar-width
# or
npm install @mvsde/scrollbar-width
```

## Usage

```js
import scrollbarWidth from '@mvsde/scrollbar-width'

// Get the width of the scrollbar
const width = scrollbarWidth()

// Check if page has overflow and then get scrollbar width
const widthWithOverflowTest = scrollbarWidth({ testOverflow: true })
```