dappconnect-chat-sdk/apps/website/tailwind.config.js
Pavel e05c318035
Add initial insights implementation (#388)
* add colors to tailwind config

* update reset.css

* add epics page

* add epic detail page

* add orphans page

* add repos page

* add missing @status-im/components exports

* update visx link

* support icons in <Tag />

* update Tag in website

* emojiOnly -> iconOnly

* update icons scripts

* add missing dir to clean script

* enable eslint next config

* restructure website and add layouts

* move static data outside components
2023-05-03 14:25:17 +02:00

29 lines
563 B
JavaScript

// eslint-disable-next-line @typescript-eslint/no-var-requires
const colors = require('@status-im/colors')
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/**/*.{js,ts,jsx,tsx,mdx}',
// './app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
fontFamily: {
sans: ['var(--font-inter)'],
},
colors,
// use <Text /> from @status-im/components
fontSize: {},
fontWeight: {
// regular: '400',
// medium: '500',
// semibold: '600',
},
extend: {},
},
plugins: [],
}