mirror of
https://github.com/open-webui/open-webui.git
synced 2026-03-09 07:18:29 -05:00
31 lines
614 B
JavaScript
31 lines
614 B
JavaScript
import typography from '@tailwindcss/typography';
|
|
import containerQueries from '@tailwindcss/container-queries';
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
darkMode: 'class',
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
theme: {
|
|
extend: {
|
|
typography: {
|
|
DEFAULT: {
|
|
css: {
|
|
pre: false,
|
|
code: false,
|
|
'pre code': false,
|
|
'code::before': false,
|
|
'code::after': false
|
|
}
|
|
}
|
|
},
|
|
padding: {
|
|
'safe-bottom': 'env(safe-area-inset-bottom)'
|
|
},
|
|
transitionProperty: {
|
|
width: 'width'
|
|
}
|
|
}
|
|
},
|
|
plugins: [typography, containerQueries]
|
|
};
|