mirror of
https://github.com/TwiN/gatus.git
synced 2024-11-21 23:43:27 +01:00
70f9f8738c
* fix(mobile css): disable hover effects when not supported * fix missing trailing comma in tailwind config * make css hover fix static * update static css --------- Co-authored-by: TwiN <twin@linux.com>
21 lines
374 B
JavaScript
21 lines
374 B
JavaScript
module.exports = {
|
|
content: [
|
|
'./public/index.html',
|
|
'./src/**/*.{vue,js,ts,jsx,tsx}'
|
|
],
|
|
darkMode: 'class', // or 'media' or 'class'
|
|
theme: {
|
|
fontFamily: {
|
|
'mono': ['Consolas', 'Monaco', '"Courier New"', 'monospace']
|
|
},
|
|
extend: {},
|
|
},
|
|
variants: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
future: {
|
|
hoverOnlyWhenSupported: true,
|
|
},
|
|
}
|