deblan.io-murph/tailwind.config.js

29 lines
458 B
JavaScript
Raw Normal View History

2022-09-25 18:06:39 +02:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./assets/**/*.js",
"./templates/**/*.html.twig",
],
theme: {
2022-09-25 22:50:37 +02:00
extend: {
},
2023-01-06 09:18:19 +01:00
screens: {
'sm': '640px',
'md': '968px',
'lg': '1284px',
'xl': '1380px',
'2xl': '1536px',
}
2022-09-25 18:06:39 +02:00
},
2022-09-25 20:43:24 +02:00
plugins: [
require("daisyui"),
require('@tailwindcss/typography'),
],
2022-09-25 18:06:39 +02:00
daisyui: {
2022-09-25 22:50:37 +02:00
themes: [
"light",
"dark",
],
2022-09-25 18:06:39 +02:00
},
}