From d99e8953c3deca2af2bd4850c919e6f6e9f8e8b9 Mon Sep 17 00:00:00 2001 From: atridadl Date: Wed, 22 Nov 2023 22:23:00 -0700 Subject: [PATCH] Fixed CSS --- app/routes/_index.tsx | 13 ++++++++++--- package.json | 2 ++ pnpm-lock.yaml | 31 +++++++++++++++++++++++++++++++ postcss.config.cjs | 6 ++++++ 4 files changed, 49 insertions(+), 3 deletions(-) create mode 100644 postcss.config.cjs diff --git a/app/routes/_index.tsx b/app/routes/_index.tsx index 13c20f0..7fec3e3 100644 --- a/app/routes/_index.tsx +++ b/app/routes/_index.tsx @@ -2,9 +2,16 @@ export default function Index() { return (

- Sprint{" "} - - Padawan + + + + Sprint Padawan +

diff --git a/package.json b/package.json index a4b99a2..d0952a5 100644 --- a/package.json +++ b/package.json @@ -33,11 +33,13 @@ "@remix-run/eslint-config": "^2.3.1", "@types/react": "^18.2.38", "@types/react-dom": "^18.2.17", + "autoprefixer": "^10.4.16", "better-sqlite3": "^9.1.1", "daisyui": "^4.4.2", "dotenv": "^16.3.1", "drizzle-kit": "^0.20.4", "eslint": "^8.54.0", + "postcss": "^8.4.31", "tailwindcss": "^3.3.5", "typescript": "^5.3.2" }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d1141c2..56c9706 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -67,6 +67,9 @@ devDependencies: '@types/react-dom': specifier: ^18.2.17 version: 18.2.17 + autoprefixer: + specifier: ^10.4.16 + version: 10.4.16(postcss@8.4.31) better-sqlite3: specifier: ^9.1.1 version: 9.1.1 @@ -82,6 +85,9 @@ devDependencies: eslint: specifier: ^8.54.0 version: 8.54.0 + postcss: + specifier: ^8.4.31 + version: 8.4.31 tailwindcss: specifier: ^3.3.5 version: 3.3.5 @@ -2454,6 +2460,22 @@ packages: resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} dev: false + /autoprefixer@10.4.16(postcss@8.4.31): + resolution: {integrity: sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==} + engines: {node: ^10 || ^12 || >=14} + hasBin: true + peerDependencies: + postcss: ^8.1.0 + dependencies: + browserslist: 4.22.1 + caniuse-lite: 1.0.30001564 + fraction.js: 4.3.7 + normalize-range: 0.1.2 + picocolors: 1.0.0 + postcss: 8.4.31 + postcss-value-parser: 4.2.0 + dev: true + /available-typed-arrays@1.0.5: resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} engines: {node: '>= 0.4'} @@ -4237,6 +4259,10 @@ packages: resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} engines: {node: '>= 0.6'} + /fraction.js@4.3.7: + resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} + dev: true + /fresh@0.5.2: resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} engines: {node: '>= 0.6'} @@ -5931,6 +5957,11 @@ packages: resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} engines: {node: '>=0.10.0'} + /normalize-range@0.1.2: + resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} + engines: {node: '>=0.10.0'} + dev: true + /npm-install-checks@6.3.0: resolution: {integrity: sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} diff --git a/postcss.config.cjs b/postcss.config.cjs new file mode 100644 index 0000000..12a703d --- /dev/null +++ b/postcss.config.cjs @@ -0,0 +1,6 @@ +module.exports = { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +};