Files
chatbot-ui/tailwind.config.js
T
Danil Shishkevich 4d0d1e8b95 chore: change sidebar font size & style (#191)
* chore: change sidebar font size & style

* chore: create font size style for sidebar
2023-03-26 03:29:31 -06:00

17 lines
352 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,ts,jsx,tsx}',
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
darkMode: 'class',
theme: {
fontSize: {
sidebar: ['13px', '18px']
},
extend: {},
},
plugins: [require('@tailwindcss/typography')],
};