fix(market-card.tsx): change tooltip side from top to right for better visibility and alignment
fix(market-card.tsx): add hover effect to the container div to indicate interactivity
This commit is contained in:
parent
2911f8751a
commit
664c5c4ffb
1 changed files with 3 additions and 3 deletions
|
|
@ -148,9 +148,9 @@ export const MarketCardComponent = ({ data }: { data: storeComponent }) => {
|
|||
<div className=" flex items-center gap-3">
|
||||
<ShadTooltip
|
||||
styleClasses="bg-transparent border-none shadow-none"
|
||||
side="top"
|
||||
side="right"
|
||||
content={
|
||||
<div className="flex flex-wrap gap-1">
|
||||
<div className="flex flex-wrap gap-1">
|
||||
{testTags.map((tag, index) => (
|
||||
<div className="">
|
||||
<Badge
|
||||
|
|
@ -166,7 +166,7 @@ export const MarketCardComponent = ({ data }: { data: storeComponent }) => {
|
|||
</div>
|
||||
}
|
||||
>
|
||||
<div>
|
||||
<div className="hover:blur-sm">
|
||||
{testTags.length > 0 ? (
|
||||
<ElementStack>
|
||||
{testTags.map((tag, index) => (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue