├── .gitignore ├── README.md ├── eslint.config.js ├── index.html ├── package.json ├── pnpm-lock.yaml ├── public └── vite.svg ├── src ├── App.tsx ├── app.sass ├── components │ ├── content.tsx │ ├── file-btn.tsx │ ├── import-config.tsx │ ├── paper.tsx │ ├── segment.tsx │ └── segments.tsx ├── context │ └── global.ts ├── index.css ├── main.tsx ├── utils │ └── clipboard.ts └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json ├── uno.config.ts └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatsJuice/css-paper-curve/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatsJuice/css-paper-curve/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatsJuice/css-paper-curve/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatsJuice/css-paper-curve/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatsJuice/css-paper-curve/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatsJuice/css-paper-curve/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatsJuice/css-paper-curve/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatsJuice/css-paper-curve/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/app.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatsJuice/css-paper-curve/HEAD/src/app.sass -------------------------------------------------------------------------------- /src/components/content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatsJuice/css-paper-curve/HEAD/src/components/content.tsx -------------------------------------------------------------------------------- /src/components/file-btn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatsJuice/css-paper-curve/HEAD/src/components/file-btn.tsx -------------------------------------------------------------------------------- /src/components/import-config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatsJuice/css-paper-curve/HEAD/src/components/import-config.tsx -------------------------------------------------------------------------------- /src/components/paper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatsJuice/css-paper-curve/HEAD/src/components/paper.tsx -------------------------------------------------------------------------------- /src/components/segment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatsJuice/css-paper-curve/HEAD/src/components/segment.tsx -------------------------------------------------------------------------------- /src/components/segments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatsJuice/css-paper-curve/HEAD/src/components/segments.tsx -------------------------------------------------------------------------------- /src/context/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatsJuice/css-paper-curve/HEAD/src/context/global.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatsJuice/css-paper-curve/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatsJuice/css-paper-curve/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/utils/clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatsJuice/css-paper-curve/HEAD/src/utils/clipboard.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatsJuice/css-paper-curve/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatsJuice/css-paper-curve/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /uno.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatsJuice/css-paper-curve/HEAD/uno.config.ts -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatsJuice/css-paper-curve/HEAD/vite.config.ts --------------------------------------------------------------------------------