Skip to content

Commit

Permalink
chore: add tailwindcss
Browse files Browse the repository at this point in the history
  • Loading branch information
FallOutChonny committed Aug 6, 2021
1 parent e2e16af commit 86dfd15
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
4 changes: 4 additions & 0 deletions template/src/index.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
@tailwind base;
@tailwind components;
@tailwind utilities;

body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
Expand Down
14 changes: 14 additions & 0 deletions template/tailwind.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
const path = require('path')

module.exports = {
important: true,
darkMode: false,
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
theme: {
extend: {},
},
variants: {
extend: {},
},
plugins: [],
}

0 comments on commit 86dfd15

Please sign in to comment.