IntelliWidgets V3
Theming
theme overrides intelliprove widgets support visual customisation, which allows you to match the design of your site the layout of each widget remains consistent, but you can modify colors and fonts for more information on how the customer theming is configured, refer to the docid\ rjgsa73gtgnctkq9ufeug fine grained component customization via css variables is planned for an upcoming release, allowing more precise control over individual component styling looking for additional customization options? mailto\ support\@intelliprove com global css selectors conflicts global css reset rules can unintentionally affect intelliprove web components this commonly happens when a project includes a reset or normalization stylesheet (such as a custom css reset or tailwind’s preflight), which applies baseline styles to all html elements using broad selectors (for example the selector) to prevent conflicts, global reset styles should be reverted for intelliprove components make sure this reset override is applied after any global reset or preflight styles, so it properly restores the component’s intended styling simple example ip session, ip session { 	all revert layer; } tailwind example @import "tailwindcss"; @layer base { 	ip session, 	ip session { 	 all revert layer; 	} }