Skip to content

Commit

Permalink
Black Switcher bar
Browse files Browse the repository at this point in the history
  • Loading branch information
enricoros committed Aug 9, 2023
1 parent bde43b7 commit bce6669
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/common/layout/AppBarSupportItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export function BringTheLove(props: { text: string, link: string, icon?: React.J
const [loved, setLoved] = React.useState(false);
const icon = loved ? '❤️' : props.icon ?? null; // '❤️' : '🤍';
return <Tooltip title={props.text}><Button
variant='solid' color='primary' size='md'
variant='solid' color='neutral' size='md'
component={Link} noLinkStyle href={props.link} target='_blank'
onClick={() => setLoved(true)}
// endDecorator={icon}
Expand Down
4 changes: 2 additions & 2 deletions src/common/layout/AppBarSwitcherItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export function AppBarSwitcherItem() {

return (
<ListItem
variant='solid' color='primary'
variant='solid' color='neutral'
sx={{
'--ListItem-minHeight': '52px',
gap: 1,
Expand All @@ -71,7 +71,7 @@ export function AppBarSwitcherItem() {
{AppItems.map((app: ContainedAppType) => (
<Button
key={'app-' + app}
size='sm' variant={app == currentApp ? 'soft' : 'solid'} color={app == currentApp ? 'primary' : 'primary'}
size='sm' variant={app == currentApp ? 'soft' : 'solid'} color={app == currentApp ? 'neutral' : 'neutral'}
onClick={() => switchApp(app)}
>
{AppRouteMap[app].name}
Expand Down

1 comment on commit bce6669

@vercel
Copy link

@vercel vercel bot commented on bce6669 Aug 9, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

big-agi – ./

big-agi-enricoros.vercel.app
big-agi-git-main-enricoros.vercel.app
get.big-agi.com

Please sign in to comment.