├── .gitignore ├── package.json ├── renovate.json ├── src ├── classic-colour.css ├── classic-mono.css ├── index.css ├── index.html └── platinum.css └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .cache -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ticky/classic-scrollbars/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ticky/classic-scrollbars/HEAD/renovate.json -------------------------------------------------------------------------------- /src/classic-colour.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ticky/classic-scrollbars/HEAD/src/classic-colour.css -------------------------------------------------------------------------------- /src/classic-mono.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ticky/classic-scrollbars/HEAD/src/classic-mono.css -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ticky/classic-scrollbars/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ticky/classic-scrollbars/HEAD/src/index.html -------------------------------------------------------------------------------- /src/platinum.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ticky/classic-scrollbars/HEAD/src/platinum.css -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ticky/classic-scrollbars/HEAD/yarn.lock --------------------------------------------------------------------------------