1
0
Fork 0
mirror of https://github.com/haselkern/Minecraft-ArmorStand.git synced 2025-05-17 15:05:33 +00:00

Add new properties, some style

This commit is contained in:
Lars Martens 2021-08-14 23:31:31 +02:00
parent acbfe92a10
commit b8a514f8f9
4 changed files with 73 additions and 38 deletions

View file

@ -1,11 +1,19 @@
module.exports = {
purge: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {},
},
variants: {
extend: {},
},
plugins: [],
purge: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
flex: {
"2": "2 2 0%",
"3": "3 3 0%",
},
margin: {
"60": "60%",
},
},
},
variants: {
extend: {},
},
plugins: [],
}