Matthew Stobbs
fada05c56d
- 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
17 lines
423 B
JavaScript
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: [],
|
|
}
|
|
|