mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-15 15:08:52 +01:00
fix(HoverButtons): light/dark styling to match official site
This commit is contained in:
parent
61dcb4d307
commit
909b00c752
7 changed files with 8 additions and 10 deletions
|
|
@ -5,7 +5,7 @@ import Button from './Button';
|
|||
export default function Continue({ onClick }: TGenButtonProps) {
|
||||
return (
|
||||
<Button type="continue" onClick={onClick}>
|
||||
<ContinueIcon className="text-gray-600/90" />
|
||||
<ContinueIcon className="text-gray-600/90 dark:text-gray-400 " />
|
||||
Continue
|
||||
</Button>
|
||||
);
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ import Button from './Button';
|
|||
export default function Regenerate({ onClick }: TGenButtonProps) {
|
||||
return (
|
||||
<Button onClick={onClick}>
|
||||
<RegenerateIcon className="h-3 w-3 flex-shrink-0 text-gray-600/90" />
|
||||
<RegenerateIcon className="h-3 w-3 flex-shrink-0 text-gray-600/90 dark:text-gray-400" />
|
||||
Regenerate
|
||||
</Button>
|
||||
);
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ import Button from './Button';
|
|||
export default function Stop({ onClick }: TGenButtonProps) {
|
||||
return (
|
||||
<Button type="stop" onClick={onClick}>
|
||||
<StopGeneratingIcon className="text-gray-600/90" />
|
||||
<StopGeneratingIcon className="text-gray-600/90 dark:text-gray-400 " />
|
||||
Stop
|
||||
</Button>
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue