Skip to content

Commit

Permalink
Fix floating border outside card accordion
Browse files Browse the repository at this point in the history
  • Loading branch information
urmauur committed Dec 10, 2023
1 parent ee16683 commit 376ae98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/containers/CardSidebar/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ReactNode, useState, useRef } from 'react'
import { ReactNode, useState } from 'react'

import {
ChevronDownIcon,
Expand Down Expand Up @@ -55,7 +55,7 @@ export default function CardSidebar({
</button>
<div
ref={setToggle}
className="cursor-pointer bg-zinc-200 p-2 dark:bg-zinc-600/10"
className="cursor-pointer rounded-md bg-zinc-200 p-2 dark:bg-zinc-600/10"
onClick={() => setMore(!more)}
>
<MoreVerticalIcon className="h-5 w-5" />
Expand Down

0 comments on commit 376ae98

Please sign in to comment.