22 lines
466 B
JavaScript
22 lines
466 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{vue,js,ts,jsx,tsx}"
|
|
],
|
|
theme: {
|
|
extend: {
|
|
fontFamily:{
|
|
pixel: ["'Press Start 2P'", "cursive"],
|
|
},
|
|
backgroundImage: {
|
|
'login-bg': "url('/bgta_n.png')",
|
|
'dashboard-bg': "url('/bgpixel3.png')",
|
|
'update-bg': "url('/update_bg.png')",
|
|
},
|
|
},
|
|
},
|
|
plugins: [require('tailwind-scrollbar')],
|
|
}
|
|
|