Files
magic-card-valuator/tailwind.config.js
2022-11-02 22:07:27 -06:00

18 lines
327 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}"
],
theme: {
container: {
center: true,
padding: '2rem'
},
extend: {},
},
plugins: [],
}