headplane/tailwind.config.ts
2024-04-17 17:42:44 -04:00

15 lines
217 B
TypeScript

import type { Config } from 'tailwindcss'
export default {
content: ['./app/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
height: {
editor: 'calc(100vh - 20rem)'
}
}
},
plugins: []
} satisfies Config