7. Custom styling the Web-Components
React
Step 1. Install the npm package
npm install payengineStep 2. Create CSS module file for your component (MyComponent.module.css)
/*
MyComponent.module.css
*/
.pf-transaction-table .tabulator-col-title-holder {
border: 1px red solid;
}
.pf-transactions-table-col-title {
font-size: 0.8rem;
}Step 3. Import and apply styles in your React component
Vue.js
Step 1. Install the npm package
Step 2. Create modular <style> in your component and apply to Web-Component
Last updated