UNPKG

581 BJavaScriptView Raw
1/*!
2 * Xtend UI (https://xtendui.com/)
3 * @copyright (c) 2017-2022 Riccardo Caroli
4 * @license MIT (https://github.com/xtendui/xtendui/blob/master/LICENSE.txt)
5 */
6
7module.exports = {
8 component: {
9 '.xt-ripple-inner': {
10 overflow: 'hidden',
11 pointerEvents: 'none',
12 borderRadius: 'inherit',
13 position: 'absolute',
14 top: '0',
15 left: '0',
16 bottom: '0', // fix no width and height or it bugs
17 right: '0', // fix no width and height or it bugs
18 },
19 '.xt-ripple': {
20 position: 'absolute',
21 borderRadius: '50%',
22 },
23 },
24}