Skip to content

Commit

Permalink
fix: hover state was broken on state page
Browse files Browse the repository at this point in the history
  • Loading branch information
amorimjj committed Jun 28, 2024
1 parent 5bc9955 commit 69230c3
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,26 +17,26 @@ const StateManagement = ({ lang, queryIcon }: PropsWithLang & { queryIcon?: stri
<MdxPartial lang={lang} slug={"state-management"} path="docs" />
<GridContainer>
<div className="mx-auto w-32 my-8">
<Icon className="size-32 border border-transparent rounded-xl hover:border-primary-medium" />
<Icon className="size-32 rounded-xl hover:border hover:border-primary-medium" />
</div>
</GridContainer>
<UpdateAlert alert="hover" lang={lang} />
<CodeSample>
<div>
<div
data-cb-tag={icon}
className="size-32 border border-transparent rounded-xl hover:border-primary-medium"
className="size-32 rounded-xl hover:border hover:border-primary-medium"
/>
</div>
</CodeSample>
<Wrapper>
<MdxPartial lang={lang} slug={"state-management/state-management-order"} path="docs" />
<GridContainer>
<div className="mx-auto flex justify-center gap-6 my-8">
<Icon className="size-16 md:size-20 lg:size-32 rounded-xl border border-transparent first:bg-background last:border-primary-medium" />
<Icon className="size-16 md:size-20 lg:size-32 rounded-xl border border-transparent first:bg-background last:border-primary-medium" />
<Icon className="size-16 md:size-20 lg:size-32 rounded-xl border border-transparent first:bg-background last:border-primary-medium" />
<Icon className="size-16 md:size-20 lg:size-32 rounded-xl border border-transparent first:bg-background last:border-primary-medium" />
<Icon className="size-16 md:size-20 lg:size-32 rounded-xl first:bg-background hover:border last:border-primary-medium" />
<Icon className="size-16 md:size-20 lg:size-32 rounded-xl first:bg-background hover:border last:border-primary-medium" />
<Icon className="size-16 md:size-20 lg:size-32 rounded-xl first:bg-background hover:border last:border-primary-medium" />
<Icon className="size-16 md:size-20 lg:size-32 rounded-xl first:bg-background hover:border last:border-primary-medium" />
</div>
</GridContainer>
<CodeSample>
Expand Down

0 comments on commit 69230c3

Please sign in to comment.