gatus/web/app/tailwind.config.js
macmoritz 70f9f8738c
fix(ui): disable hover effects when not supported (#514)
* 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>
2023-07-16 21:14:43 -04:00

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,
},
}