mirror of
https://github.com/documenso/documenso.git
synced 2025-11-09 20:12:31 +10:00
- Fixed z-index when dragging pre-existing fields - Refactored document flow - Added button spinner - Added animation for document flow slider - Updated drag and drop fields - Updated document flow so it adjusts to the height of the PDF - Updated claim plan dialog
13 lines
294 B
JavaScript
13 lines
294 B
JavaScript
/* eslint-disable @typescript-eslint/no-var-requires */
|
|
const baseConfig = require('@documenso/tailwind-config');
|
|
|
|
module.exports = {
|
|
...baseConfig,
|
|
content: [
|
|
...baseConfig.content,
|
|
'./primitives/**/*.{ts,tsx}',
|
|
'./components/**/*.{ts,tsx}',
|
|
'./lib/**/*.{ts,tsx}',
|
|
],
|
|
};
|