Update tailwind.config.js

Fixed missing `media` (replacing an errant `class`) for auto dark mode
This commit is contained in:
Peter Lewis 2023-12-30 12:49:08 +00:00 committed by GitHub
parent 7900ca1e80
commit 2eb276a836
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,6 +3,6 @@
'use strict';
module.exports = {
darkMode: 'class',
darkMode: 'media',
content: ['./www/**/*.{html,js}'],
};