transicion-desordenada-diablo/frontend/tailwind.config.js
2023-12-09 16:51:38 -03:00

13 lines
272 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.svelte"],
theme: {
extend: {
boxShadow: {
glow: "0 0px 35px rgb(0 0 0 / .2)",
},
},
},
plugins: [require("@tailwindcss/typography")],
};