Merge Official Source
This commit is contained in:
27
tailwind.config.ts
Normal file
27
tailwind.config.ts
Normal file
@@ -0,0 +1,27 @@
|
||||
import plugin from 'tailwindcss/plugin'
|
||||
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
export default {
|
||||
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
['low-latency']: 'oklch(0.648 0.15 160)',
|
||||
['medium-latency']: 'rgb(250, 210, 75)',
|
||||
['high-latency']: 'rgb(244, 96, 108)',
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [
|
||||
plugin(({ addUtilities }) => {
|
||||
addUtilities({
|
||||
'.scrollbar-hidden': {
|
||||
'scrollbar-width': 'none!important',
|
||||
},
|
||||
'.scrollbar-thin': {
|
||||
'scrollbar-width': 'thin',
|
||||
},
|
||||
})
|
||||
}),
|
||||
],
|
||||
}
|
||||
Reference in New Issue
Block a user