├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .npmrc ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── README.zh-CN.md ├── eslint.config.js ├── package.json ├── playground ├── .gitignore ├── favicon.svg ├── index.html ├── package.json ├── src │ ├── main.ts │ ├── style.css │ └── vite-env.d.ts ├── tsconfig.json ├── unocss.config.ts └── vite.config.ts ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── src └── index.ts ├── test ├── __snapshots__ │ ├── index-compatible.test.ts.snap │ └── index.test.ts.snap ├── index-compatible.test.ts └── index.test.ts └── tsconfig.json /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-scrollbar/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-scrollbar/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-scrollbar/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-scrollbar/HEAD/.npmrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "unocss.root": "playground" 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-scrollbar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-scrollbar/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-scrollbar/HEAD/README.zh-CN.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-scrollbar/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-scrollbar/HEAD/package.json -------------------------------------------------------------------------------- /playground/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-scrollbar/HEAD/playground/.gitignore -------------------------------------------------------------------------------- /playground/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-scrollbar/HEAD/playground/favicon.svg -------------------------------------------------------------------------------- /playground/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-scrollbar/HEAD/playground/index.html -------------------------------------------------------------------------------- /playground/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-scrollbar/HEAD/playground/package.json -------------------------------------------------------------------------------- /playground/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-scrollbar/HEAD/playground/src/main.ts -------------------------------------------------------------------------------- /playground/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-scrollbar/HEAD/playground/src/style.css -------------------------------------------------------------------------------- /playground/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /playground/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-scrollbar/HEAD/playground/tsconfig.json -------------------------------------------------------------------------------- /playground/unocss.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-scrollbar/HEAD/playground/unocss.config.ts -------------------------------------------------------------------------------- /playground/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-scrollbar/HEAD/playground/vite.config.ts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-scrollbar/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-scrollbar/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-scrollbar/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/__snapshots__/index-compatible.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-scrollbar/HEAD/test/__snapshots__/index-compatible.test.ts.snap -------------------------------------------------------------------------------- /test/__snapshots__/index.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-scrollbar/HEAD/test/__snapshots__/index.test.ts.snap -------------------------------------------------------------------------------- /test/index-compatible.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-scrollbar/HEAD/test/index-compatible.test.ts -------------------------------------------------------------------------------- /test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-scrollbar/HEAD/test/index.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-scrollbar/HEAD/tsconfig.json --------------------------------------------------------------------------------