diff --git a/package.json b/package.json index 23b182eaa1..d30223d8e1 100644 --- a/package.json +++ b/package.json @@ -58,8 +58,11 @@ ] }, "devDependencies": { + "autoprefixer": "^10.4.7", + "postcss": "^8.4.13", "puppeteer": "^13.7.0", "react-snap": "^1.23.0", + "tailwindcss": "^3.0.24", "typescript": "^4.6.4" } } diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 0000000000..33ad091d26 --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,6 @@ +module.exports = { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +} diff --git a/src/index.css b/src/index.css index e69de29bb2..bd6213e1df 100644 --- a/src/index.css +++ b/src/index.css @@ -0,0 +1,3 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; \ No newline at end of file diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000000..115da8ea9a --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,9 @@ +module.exports = { + content: [ + "./src/**/*.{js,jsx,ts,tsx}", + ], + theme: { + extend: {}, + }, + plugins: [], +}