mirror of
https://github.com/xiaoyiweb/YiAi.git
synced 2025-11-12 12:13:48 +08:00
初始化
This commit is contained in:
39
chat/tailwind.config.js
Normal file
39
chat/tailwind.config.js
Normal file
@@ -0,0 +1,39 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = {
|
||||
darkMode: 'class',
|
||||
purge: false,
|
||||
content: [
|
||||
'./index.html',
|
||||
'./src/**/*.{vue,js,ts,jsx,tsx}',
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
screens: {
|
||||
'3xl': '1750px',
|
||||
'4xl': '1870px',
|
||||
},
|
||||
animation: {
|
||||
blink: 'blink 1.2s infinite steps(1, start)',
|
||||
},
|
||||
keyframes: {
|
||||
blink: {
|
||||
'0%, 100%': { 'background-color': 'currentColor' },
|
||||
'50%': { 'background-color': 'transparent' },
|
||||
},
|
||||
},
|
||||
width: {
|
||||
sider: '60px',
|
||||
},
|
||||
textColor: {
|
||||
primary: '#409eff',
|
||||
},
|
||||
minHeight: {
|
||||
28: '28px',
|
||||
},
|
||||
backgroundColor: {
|
||||
lightBg: 'linear-gradient(145deg, #F7F9FA 0%, #D9E9F0 50%, #F7F9FA 100%)',
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: ['@tailwindcss/typography'],
|
||||
}
|
||||
Reference in New Issue
Block a user