parent
865c86ec28
commit
61587406e8
11 changed files with 9972 additions and 37 deletions
@ -0,0 +1,6 @@ |
||||
module.exports = { |
||||
plugins: { |
||||
tailwindcss: {}, |
||||
autoprefixer: {}, |
||||
}, |
||||
} |
@ -0,0 +1,7 @@ |
||||
import React from "react"; |
||||
|
||||
const Card = () => { |
||||
return <div className="bg-red-400">Card</div>; |
||||
}; |
||||
|
||||
export default Card; |
@ -1,13 +0,0 @@ |
||||
body { |
||||
margin: 0; |
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', |
||||
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', |
||||
sans-serif; |
||||
-webkit-font-smoothing: antialiased; |
||||
-moz-osx-font-smoothing: grayscale; |
||||
} |
||||
|
||||
code { |
||||
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', |
||||
monospace; |
||||
} |
@ -0,0 +1,3 @@ |
||||
@tailwind base; |
||||
@tailwind components; |
||||
@tailwind utilities; |
@ -0,0 +1,7 @@ |
||||
module.exports = { |
||||
content: ["./src/**/*.{js,jsx,ts,tsx}"], |
||||
theme: { |
||||
extend: {}, |
||||
}, |
||||
plugins: [], |
||||
}; |
Loading…
Reference in new issue