# tailwindcss-no-scrollbar

> Exposes a class that hides the browser's default scrollbar using various tricks

Latest version **1.0.1** (published 2021-03-10) · MIT license · 0 weekly downloads

## Install

```sh
npm install tailwindcss-no-scrollbar
pnpm add tailwindcss-no-scrollbar
yarn add tailwindcss-no-scrollbar
bun add tailwindcss-no-scrollbar
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2021-03-10 |
| First published | 2021-03-10 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 2.7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 16 |
| Author | Félix Dorn |
| Maintainers | a_felixdorn |
| Keywords | CSS, Tailwind, Scrollbar |

## Links

- npm: https://www.npmjs.com/package/tailwindcss-no-scrollbar
- Repository: https://github.com/redwebcreation/tailwindcss-no-scrollbar
- Homepage: https://github.com/redwebcreation/tailwindcss-no-scrollbar#readme
- Issues: https://github.com/redwebcreation/tailwindcss-no-scrollbar/issues
- npm.io page: https://npm.io/package/tailwindcss-no-scrollbar

## Alternatives

- [@sveltejs/kit](https://npm.io/package/@sveltejs/kit.md) — 2.2M weekly downloads
- [@atlaskit/theme](https://npm.io/package/@atlaskit/theme.md) — 402.0K weekly downloads
- [@tangle-network/brand](https://npm.io/package/@tangle-network/brand.md) — 10.0K weekly downloads
- [seneca](https://npm.io/package/seneca.md) — 7.4K weekly downloads
- [@bsb/base](https://npm.io/package/@bsb/base.md) — 7.2K weekly downloads

## Recent versions

- 1.0.1 (latest) — 2021-03-10
- 1.0.0 — 2021-03-10

## README

# TailwindCSS plugin for removing scrollbars
This plugin exposes a class that hides the browser's default scrollbar using various tricks 

## Installation
```bash
npm install --save-dev tailwindcss-no-scrollbar
```
or
```bash
yarn add -D tailwindcss-no-scrollbar
```

## Usage
````js
// tailwind.config.js
module.exports = {
    plugins: [
        require('tailwindcss-no-scrollbar')
    ]
}
````

Then, add `.scrollbar-none` on the overflowing element.

```html
<div class="overflow-x-auto whitespace-nowrap w-24 scrollbar-none">
    Some long text which will overflow for sure. Please is it enough? Surely.
</div>
```

---
_Source: https://npm.io/package/tailwindcss-no-scrollbar · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
