fix: Update background color in FlowMenu dropdown (#4681)
Updated the background color in the FlowMenu dropdown to match the dark theme background. This ensures a consistent and visually appealing user experience. Refactor the code in `src/frontend/src/components/appHeaderComponent/components/FlowMenu/index.tsx` to change the `DropdownMenuContent` class from `bg-white` to `bg-background`.
This commit is contained in:
parent
160409d19c
commit
b9ffce2a8f
1 changed files with 1 additions and 1 deletions
|
|
@ -148,7 +148,7 @@ export const MenuBar = ({}: {}): JSX.Element => {
|
|||
/>
|
||||
</div>
|
||||
</DropdownMenuTrigger>
|
||||
<DropdownMenuContent className="w-44 bg-white dark:bg-black">
|
||||
<DropdownMenuContent className="w-44 bg-white dark:bg-background">
|
||||
<DropdownMenuLabel>Options</DropdownMenuLabel>
|
||||
<DropdownMenuItem
|
||||
onClick={() => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue