Adding in tailwindcss and configs

This commit is contained in:
Frank Delaguila
2022-03-12 19:41:39 -07:00
parent d8beede420
commit ef5cdba060
8 changed files with 59 additions and 10 deletions

11
tailwind.config.js Normal file
View File

@@ -0,0 +1,11 @@
module.exports = {
purge: ['./src/**/*.html', './src/components/**/*.jsx'],
content: ["./src/**/*.{html,js,jsx}"],
theme: {
extend: {},
fontFamily: {
sans: ['Museo Sans']
}
},
plugins: [],
}