Skip to content

Commit

Permalink
Merge pull request #368 from qwikode/fix/ui-gradient
Browse files Browse the repository at this point in the history
fix(ui): header gradient, textarea border, prompt buttons
  • Loading branch information
dustinwloring1988 authored Dec 3, 2024
2 parents 7ce7051 + 5bd1387 commit e55bf48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions app/components/chat/BaseChat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,7 @@ export const BaseChat = React.forwardRef<HTMLDivElement, BaseChatProps>(
</button>
</div>


<div className={isModelSettingsCollapsed ? 'hidden' : ''}>
<ModelSelector
key={provider?.name + ':' + modelList.length}
Expand Down
2 changes: 1 addition & 1 deletion app/components/header/HeaderActionButtons.client.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export function HeaderActionButtons({}: HeaderActionButtonsProps) {
<div className="flex border border-bolt-elements-borderColor rounded-md overflow-hidden">
<Button
active={showChat}
disabled={!canHideChat || isSmallViewport} // expand button is disabled on mobile as it's needed
disabled={!canHideChat || isSmallViewport} // expand button is disabled on mobile as it's not needed
onClick={() => {
if (canHideChat) {
chatStore.setKey('showChat', !showChat);
Expand Down

0 comments on commit e55bf48

Please sign in to comment.