Skip to content

Commit

Permalink
Merge pull request #18 from signorecello/remove_preflight
Browse files Browse the repository at this point in the history
fix: removing preflight since it will spill to other components when imported
  • Loading branch information
signorecello authored Dec 5, 2023
2 parents 9b66529 + 4a4f96e commit b806faa
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 12 deletions.
Binary file modified .yarn/install-state.gz
Binary file not shown.
4 changes: 2 additions & 2 deletions packages/playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@
"monaco-editor-textmate": "^4.0.0",
"monaco-textmate": "^3.0.1",
"onigasm": "^2.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-toastify": "^9.1.3"
},
"devDependencies": {
Expand All @@ -53,6 +51,8 @@
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.3.5",
"typescript": "~5.2.2",
"vite": "~4.4.9",
Expand Down
18 changes: 8 additions & 10 deletions packages/playground/tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
export default {
relative: true,
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
Expand Down Expand Up @@ -66,11 +63,12 @@ export default {
},
},
fontFamily: {
'body': ['"Inter"', 'sans-serif'],
}
body: ['"Inter"', "sans-serif"],
},
},
plugins: [
require('@tailwindcss/forms'),
],
plugins: [require("@tailwindcss/forms")],
important: true,
}
corePlugins: {
preflight: false,
},
};

0 comments on commit b806faa

Please sign in to comment.