Unverified Commit dcac442e authored by Cyang39's avatar Cyang39 Committed by GitHub

chore: change dropdown's background color in dark mode (#1925)

#1919
parent da70917b
...@@ -43,7 +43,7 @@ const Dropdown: React.FC<Props> = (props: Props) => { ...@@ -43,7 +43,7 @@ const Dropdown: React.FC<Props> = (props: Props) => {
</button> </button>
)} )}
<div <div
className={`w-auto absolute flex flex-col justify-start items-start bg-white dark:bg-zinc-800 z-10 p-1 rounded-md shadow ${ className={`w-auto absolute flex flex-col justify-start items-start bg-white dark:bg-zinc-700 z-10 p-1 rounded-md shadow ${
dropdownStatus ? "" : "!hidden" dropdownStatus ? "" : "!hidden"
} ${actionsClassName ?? ""} ${positionClassName ?? "top-full right-0 mt-1"}`} } ${actionsClassName ?? ""} ${positionClassName ?? "top-full right-0 mt-1"}`}
> >
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment