clustvirt/assets/tailwind.config.js

17 lines
432 B
JavaScript
Raw Normal View History

/** @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: [],
}