clustvirt/assets/tailwind.config.js
Matthew Stobbs fada05c56d add icons for tailwind
- svg icons from heroicons.com
- add Type to String map for:
  - StoragePoolState
  - StorageVolType
- default icons are sized 24x24
  - added 36x36, 48x48, 64x64
- adding styling to home.gohtml homepage
2024-03-13 22:21:01 -06:00

17 lines
423 B
JavaScript

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