CSS Framework Conflicts
Problem: Styles Being Overridden
Symptoms
Solution: CSS Layer Configuration
/* In your global CSS file (e.g., globals.css) */
/* 1. Define layers with explicit priority */
@layer vechain-kit, host-app;
/* 2. Wrap your framework in host-app layer */
@layer host-app {
@tailwind base;
@tailwind components;
@tailwind utilities;
/* Your custom styles here */
}Last updated
Was this helpful?