mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
c65584d23c
* refactor: navigator * feat: support trash
20 lines
451 B
JavaScript
20 lines
451 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',
|
|
],
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {
|
|
colors,
|
|
boxShadow,
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|