mirror of
https://github.com/catdevnull/transicion-desordenada-diablo
synced 2024-11-14 18:21:38 +00:00
12 lines
272 B
JavaScript
12 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")],
|
|
};
|