Replies: 1 comment 2 replies
-
|
Hey @tobyloki, Thank you for asking this important question! Tailwind CSS supports prefixing for both generated utility classes and CSS variables exactly for cases like this one. You simply need to add the prefix in your main CSS file. https://tailwindcss.com/docs/styling-with-utility-classes#using-the-prefix-option |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm in the process of migrating some components from MudBlazor to LumexUI, however some LumexUI components don't show up on correctly like the LumexButton & LumexDropdown. The main cause of the styling problem is caused by Mudblazor's
<link href="@Assets["_content/MudBlazor/MudBlazor.min.css"]" rel="stylesheet" />in App.razor which conflicts with the LumexUI tailwind generated css file<link rel="stylesheet" href="@Assets["css/tw.css"]"/>. How can I fix this so I can still use MudBlazor and LumexUI together?Beta Was this translation helpful? Give feedback.
All reactions