Files
e2b-dev--e2b/apps/dashboard/tailwind.config.js
T
Tomas Valenta 55560bd096 Reorganize repo
2023-08-14 14:32:42 +02:00

23 lines
550 B
JavaScript

const { fontFamily } = require('tailwindcss/defaultTheme')
module.exports = {
content: ['./components/**/*.{js,ts,jsx,tsx,css}', './pages/**/*.{js,ts,jsx,tsx,css}', './styles/**/*.{js,ts,jsx,tsx,css}'],
darkMode: 'class',
important: true,
theme: {
extend: {
fontFamily: {
sans: ['var(--font-inter)', ...fontFamily.sans],
},
spacing: {
120: '30rem',
},
height: { inherit: 'inherit' },
},
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/forms'),
],
}