fix(filters): inherit tag color for the search-term link
The active search pill renders its term through a Chakra Link, which painted link-blue while every sibling filter pill renders the tag contrast color. Set color=inherit so the term matches the other tags; the hover underline now draws in the tag's own color too.
This commit is contained in:
@@ -80,6 +80,7 @@ const ActiveFilters = () => {
|
|||||||
)
|
)
|
||||||
}}
|
}}
|
||||||
><Link
|
><Link
|
||||||
|
color="inherit"
|
||||||
onMouseDown={() => setSearchModalOpen.set(true)}>{searchParams}</Link>
|
onMouseDown={() => setSearchModalOpen.set(true)}>{searchParams}</Link>
|
||||||
</Tag>
|
</Tag>
|
||||||
</>
|
</>
|
||||||
|
|||||||
Reference in New Issue
Block a user