headplane/tailwind.config.ts

15 lines
217 B
TypeScript
Raw Normal View History

2024-03-25 17:50:58 -04:00
import type { Config } from 'tailwindcss'
export default {
content: ['./app/**/*.{js,jsx,ts,tsx}'],
theme: {
2024-04-17 17:42:44 -04:00
extend: {
height: {
editor: 'calc(100vh - 20rem)'
}
}
2024-03-25 17:50:58 -04:00
},
plugins: []
} satisfies Config