primevue
Version:
PrimeVue is an open source UI library for Vue featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeBloc
18 lines (15 loc) • 684 B
JavaScript
import BaseStyle from '@primevue/core/base/style';
var theme = function theme(_ref) {
var dt = _ref.dt;
return "\n.p-ink {\n display: block;\n position: absolute;\n background: ".concat(dt('ripple.background'), ";\n border-radius: 100%;\n transform: scale(0);\n pointer-events: none;\n}\n\n.p-ink-active {\n animation: ripple 0.4s linear;\n}\n\n@keyframes ripple {\n 100% {\n opacity: 0;\n transform: scale(2.5);\n }\n}\n");
};
var classes = {
root: 'p-ink'
};
var RippleStyle = BaseStyle.extend({
name: 'ripple-directive',
theme: theme,
classes: classes
});
export { RippleStyle as default };
//# sourceMappingURL=index.mjs.map