open-webui / tailwind.config.js
oki692's picture
Deploy Open WebUI
87a665c verified
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]
};