2024-03-14 01:12:48 +00:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
|
|
|
content: ["../view/**/*.gohtml"],
|
|
|
|
theme: {
|
2024-03-14 04:21:01 +00:00
|
|
|
extend: {
|
|
|
|
listStyleImage: {
|
2024-03-14 04:38:35 +00:00
|
|
|
chevronRight: 'url("/static/icons/48-chevron-right.svg")',
|
|
|
|
xCircle: 'url("/static/icons/48-x-circle.svg")',
|
2024-03-14 04:21:01 +00:00
|
|
|
checkCircle: 'url("/static/icons/check-circle.svg")',
|
2024-03-14 04:38:35 +00:00
|
|
|
noSymbol: 'url("/static/icons/48-no-symbol.svg")',
|
2024-03-14 04:21:01 +00:00
|
|
|
},
|
|
|
|
},
|
2024-03-14 01:12:48 +00:00
|
|
|
},
|
|
|
|
plugins: [],
|
|
|
|
}
|
|
|
|
|