17 lines
432 B
JavaScript
17 lines
432 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["../view/**/*.gohtml"],
|
|
theme: {
|
|
extend: {
|
|
listStyleImage: {
|
|
chevronRight: 'url("/static/icons/48-chevron-right.svg")',
|
|
xCircle: 'url("/static/icons/48-x-circle.svg")',
|
|
checkCircle: 'url("/static/icons/check-circle.svg")',
|
|
noSymbol: 'url("/static/icons/48-no-symbol.svg")',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|