mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-09-22 06:00:56 +02:00
style(NewConversationMenu): change dropdown menu background color to dark gray (#419)
style(EndpointItem): change active background color to light gray
This commit is contained in:
parent
7468b3011f
commit
fcf068dddf
2 changed files with 2 additions and 2 deletions
|
@ -36,7 +36,7 @@ export default function ModelItem({ endpoint, value, isSelected }) {
|
|||
value={value}
|
||||
className={cn(
|
||||
'group dark:font-semibold dark:text-gray-100 dark:hover:bg-gray-800',
|
||||
isSelected && 'dark:bg-gray-900 bg-gray-50 active'
|
||||
isSelected && 'dark:bg-gray-800 bg-gray-50 active'
|
||||
)}
|
||||
id={endpoint}
|
||||
>
|
||||
|
|
|
@ -137,7 +137,7 @@ export default function NewConversationMenu() {
|
|||
</Button>
|
||||
</DropdownMenuTrigger>
|
||||
<DropdownMenuContent
|
||||
className="min-w-[300px] dark:bg-gray-700 z-[100]"
|
||||
className="min-w-[300px] dark:bg-gray-900 z-[100]"
|
||||
onCloseAutoFocus={(event) => event.preventDefault()}
|
||||
>
|
||||
<DropdownMenuLabel
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue