UNPKG

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

24 lines (21 loc) 1 kB
import BaseStyle from 'primevue/base/style'; var css = "\n@layer primevue {\n .p-fieldset-legend > a,\n .p-fieldset-legend > span {\n display: flex;\n align-items: center;\n justify-content: center;\n }\n\n .p-fieldset-toggleable .p-fieldset-legend a {\n cursor: pointer;\n user-select: none;\n overflow: hidden;\n position: relative;\n text-decoration: none;\n }\n\n .p-fieldset-legend-text {\n line-height: 1;\n }\n}\n"; var classes = { root: function root(_ref) { var props = _ref.props; return ['p-fieldset p-component', { 'p-fieldset-toggleable': props.toggleable }]; }, legend: 'p-fieldset-legend', legendtitle: 'p-fieldset-legend-text', togglericon: 'p-fieldset-toggler', toggleablecontent: 'p-toggleable-content', content: 'p-fieldset-content' }; var FieldsetStyle = BaseStyle.extend({ name: 'fieldset', css: css, classes: classes }); export { FieldsetStyle as default };