css changes

This commit is contained in:
Maria Sanchez 2022-07-20 09:59:03 -06:00
parent 460f6c3bd8
commit 30a3686964
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,6 @@
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}

View File

@ -0,0 +1,10 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}