mirror of
https://github.com/ChatGPTNextWeb/NextChat.git
synced 2026-03-03 00:25:02 +08:00
feat: seperate chat page
This commit is contained in:
40
tailwind.config.js
Normal file
40
tailwind.config.js
Normal file
@@ -0,0 +1,40 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = {
|
||||
content: [
|
||||
"./app/**/*.{js,ts,jsx,tsx,mdx}",
|
||||
],
|
||||
theme: {
|
||||
fontSize: {
|
||||
sm: '0.75rem',
|
||||
'sm-mobile': '0.875rem',
|
||||
'sm-title': '0.875rem',
|
||||
},
|
||||
screens: {
|
||||
sm: '480px',
|
||||
md: '768px',
|
||||
lg: '1120px',
|
||||
xl: '1440px',
|
||||
'2xl': '1980px'
|
||||
},
|
||||
// spacing: Array.from({ length: 1000 }).reduce((map, _, index) => {
|
||||
// map[index] = `${index}rem`;
|
||||
// return map;
|
||||
// }, {}),
|
||||
extend: {
|
||||
width: {
|
||||
'md': '15rem',
|
||||
'lg': '21.25rem',
|
||||
'2xl': '27.5rem',
|
||||
}
|
||||
},
|
||||
borderRadius: {
|
||||
'none': '0',
|
||||
'sm': '0.125rem',
|
||||
DEFAULT: '0.25rem',
|
||||
'md': '0.75rem',
|
||||
'lg': '1rem',
|
||||
}
|
||||
},
|
||||
plugins: [],
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user