update TailwindDocs
parent
05552029ca
commit
b301b2dd7f
|
@ -96,6 +96,12 @@ export default {
|
||||||
},
|
},
|
||||||
caption: {
|
caption: {
|
||||||
class: ['absolute bottom-0 left-0 w-full', 'bg-black/50 text-white p-4']
|
class: ['absolute bottom-0 left-0 w-full', 'bg-black/50 text-white p-4']
|
||||||
|
},
|
||||||
|
transition: {
|
||||||
|
enterFromClass: 'opacity-0 scale-75',
|
||||||
|
enterActiveClass: 'transition-all duration-150 ease-in-out',
|
||||||
|
leaveActiveClass: 'transition-all duration-150 ease-in',
|
||||||
|
leaveToClass: 'opacity-0 scale-75'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -76,7 +76,13 @@ export default {
|
||||||
'focus:outline-none focus:outline-offset-0 focus:shadow-[0_0_0_0.2rem_rgba(191,219,254,1)]'
|
'focus:outline-none focus:outline-offset-0 focus:shadow-[0_0_0_0.2rem_rgba(191,219,254,1)]'
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
closeicon: 'w-6 h-6'
|
closeicon: 'w-6 h-6',
|
||||||
|
transition: {
|
||||||
|
enterFromClass: 'opacity-0 scale-75',
|
||||||
|
enterActiveClass: 'transition-all duration-150 ease-in-out',
|
||||||
|
leaveActiveClass: 'transition-all duration-150 ease-in',
|
||||||
|
leaveToClass: 'opacity-0 scale-75'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
`
|
`
|
||||||
|
|
|
@ -27,7 +27,13 @@ export default {
|
||||||
'!bg-gray-700 hover:bg-gray-800 h-12 w-12 rounded-full text-white': props.target !== 'parent'
|
'!bg-gray-700 hover:bg-gray-800 h-12 w-12 rounded-full text-white': props.target !== 'parent'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
})
|
}),
|
||||||
|
transition: {
|
||||||
|
enterFromClass: 'opacity-0',
|
||||||
|
enterActiveClass: 'transition-opacity duration-150',
|
||||||
|
leaveActiveClass: 'transition-opacity duration-150',
|
||||||
|
leaveToClass: 'opacity-0'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
`
|
`
|
||||||
|
|
Loading…
Reference in New Issue