transicion-desordenada-diablo/frontend/tailwind.config.js

13 lines
272 B
JavaScript
Raw Normal View History

2023-12-07 23:12:27 +00:00
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.svelte"],
theme: {
2023-12-09 19:51:38 +00:00
extend: {
boxShadow: {
glow: "0 0px 35px rgb(0 0 0 / .2)",
},
},
2023-12-07 23:12:27 +00:00
},
plugins: [require("@tailwindcss/typography")],
2023-12-07 23:12:27 +00:00
};