Departure commit

This commit is contained in:
mio
2023-05-01 15:52:32 +08:00
commit 92cafdadb8
61 changed files with 9597 additions and 0 deletions

16
tailwind.config.js Normal file
View File

@ -0,0 +1,16 @@
module.exports = {
content: ['./src/renderer/index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
extend: {
minWidth: {
'10': '60px'
}
},
},
variants: {
extend: {
backgroundColor: ['active']
}
},
plugins: [],
}