AppFlowy/frontend/appflowy_tauri/tailwind.config.cjs
fangwufeng-v a81670c447
feat: new grid (#3167)
* feat: implement database database service by functions

* feat: define database data type

* feat: basic grid store and component

* feat: data communication mechanism and simple table ui. Can add new filed and update field name.

* feat: add grid text cell and grid checkbox cell

* feat: single select cell and multiselect cell

* refactor: fix code review problems

* feat: add new row

* feat: fix tsc error
2023-09-11 10:27:56 +08:00

21 lines
473 B
JavaScript

const colors = require('./style-dictionary/tailwind/colors.cjs');
const boxShadow = require('./style-dictionary/tailwind/box-shadow.cjs');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./index.html',
'./src/**/*.{js,ts,jsx,tsx}',
'./node_modules/react-tailwindcss-datepicker/dist/index.esm.js',
],
important: '#body',
darkMode: 'class',
theme: {
extend: {
colors,
boxShadow,
},
},
plugins: [],
};