wah-su.github.io/tailwind.config.js
Kentai Radiquum 62644e4c6f
refactor: status indicator and page
add transition animation to status indicator icon
refactor icon and text to be one element
add Unknown and Loading status
remove sticky class from header
2024-06-22 14:27:05 +05:00

18 lines
369 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "selector",
content: [
"./index.html",
"./src/**/*.{html,js}",
"./public/js/cards.js",
"./public/js/status.js",
"./node_modules/flowbite/**/*.js",
],
theme: {
container: {
center: true,
},
extend: {},
},
plugins: [require("flowbite/plugin")],
};