mirror of
https://github.com/harivansh-afk/RAG-ui.git
synced 2026-04-19 01:04:31 +00:00
implemented gpt 4 AI interface
This commit is contained in:
parent
e0ad860ab6
commit
88f0bc7a0c
12 changed files with 2891 additions and 110 deletions
|
|
@ -1,4 +1,6 @@
|
|||
/** @type {import('tailwindcss').Config} */
|
||||
import typography from '@tailwindcss/typography';
|
||||
|
||||
export default {
|
||||
darkMode: ["class"],
|
||||
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
|
||||
|
|
@ -57,7 +59,19 @@ export default {
|
|||
md: "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
|
||||
lg: "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",
|
||||
},
|
||||
typography: {
|
||||
DEFAULT: {
|
||||
css: {
|
||||
maxWidth: 'none',
|
||||
color: 'inherit',
|
||||
pre: {
|
||||
backgroundColor: 'rgb(17, 24, 39)',
|
||||
color: 'rgb(229, 231, 235)',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
};
|
||||
plugins: [typography],
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue