improve scrolling / layout
This commit is contained in:
45
tailwind.config.ts
Normal file
45
tailwind.config.ts
Normal file
@@ -0,0 +1,45 @@
|
||||
const colors = require('tailwindcss/colors')
|
||||
const appWidth = '1280px'
|
||||
const sideBarWidth = '220px'
|
||||
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
export default {
|
||||
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
primary: '#1e4bc4',
|
||||
secondary: colors.gray[500],
|
||||
},
|
||||
maxWidth: {
|
||||
app: appWidth,
|
||||
sidebar: sideBarWidth,
|
||||
},
|
||||
width: {
|
||||
sidebar: sideBarWidth,
|
||||
},
|
||||
margin: {
|
||||
sidebar: sideBarWidth,
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [require('daisyui')],
|
||||
daisyui: {
|
||||
themes: [
|
||||
{
|
||||
contexted: {
|
||||
primary: '#1E4BC4',
|
||||
secondary: '#F000B8',
|
||||
accent: '#37CDBE',
|
||||
neutral: '#F7F7F7',
|
||||
'base-100': '#FFFFFF',
|
||||
info: '#3ABFF8',
|
||||
success: '#36D399',
|
||||
warning: '#FBBD23',
|
||||
error: '#F87272',
|
||||
},
|
||||
},
|
||||
],
|
||||
logs: false,
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user