mirror of
https://github.com/Chanzhaoyu/chatgpt-web.git
synced 2025-02-08 22:14:53 +00:00
* fix: 用户输入也被渲染的问题 (#117) * fix: 用户输入不转换 * feat: 基础深色模式适配 * feat: 主题模式跟随系统 * feat: 深色适配补漏 * chore: version 2.7.3
23 lines
470 B
JavaScript
23 lines
470 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: 'class',
|
|
content: [
|
|
'./index.html',
|
|
'./src/**/*.{vue,js,ts,jsx,tsx}',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
animation: {
|
|
blink: 'blink 1.2s infinite steps(1, start)',
|
|
},
|
|
keyframes: {
|
|
blink: {
|
|
'0%, 100%': { 'background-color': 'currentColor' },
|
|
'50%': { 'background-color': 'transparent' },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|