fix(ui): header gradient and textarea border effect

This commit is contained in:
Qwikode
2024-11-21 23:32:53 +02:00
parent 9792e9387a
commit 5f455e6cc3
3 changed files with 153 additions and 8 deletions

View File

@@ -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);