You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I just wanted to overwrite shadow-sm with another shadow in the card root slot.
But I failed to do so. I tried the :ui way and the app.config.ts way but in both cases the new class "shadow-card" ended up BEHIND "shadow-sm".
card: {
slots: {
root: "shadow-card",
},
},
So shadow-card always gets overwritten by shadow-sm cause the code always ends up like this:
<div class="bg-[var(--ui-bg)] ring ring-[var(--ui-border)] divide-y divide-[var(--ui-border)] rounded-[calc(var(--ui-radius)*2)] shadow-sm shadow-card">
so how can I overwrite shadow-sm here?
The text was updated successfully, but these errors were encountered:
Description
Hello, I just wanted to overwrite shadow-sm with another shadow in the card root slot.
But I failed to do so. I tried the :ui way and the app.config.ts way but in both cases the new class "shadow-card" ended up BEHIND "shadow-sm".
So shadow-card always gets overwritten by shadow-sm cause the code always ends up like this:
so how can I overwrite shadow-sm here?
The text was updated successfully, but these errors were encountered: