xtendui
Version:
Xtend UI is a powerful frontend library of Tailwind CSS components enhanced by vanilla js. It helps you build interfaces with advanced interactions and animations.
25 lines (23 loc) • 595 B
JavaScript
/*!
* Xtend UI (https://xtendui.github.io/xtendui/)
* @copyright (c) 2017-2026 Riccardo Caroli
* @license MIT (https://github.com/xtendui/xtendui/blob/master/LICENSE.txt)
*/
module.exports = {
component: {
'.xt-ripple-inner': {
overflow: 'hidden',
pointerEvents: 'none',
borderRadius: 'inherit',
position: 'absolute',
top: '0',
left: '0',
bottom: '0', // fix no width and height or it bugs
right: '0', // fix no width and height or it bugs
},
'.xt-ripple': {
position: 'absolute',
borderRadius: '50%',
},
},
}