Skip to content

Commit

Permalink
Adjust chat input field padding
Browse files Browse the repository at this point in the history
Signed-off-by: Hailong Cui <[email protected]>
  • Loading branch information
Hailong-am committed Dec 19, 2023
1 parent 35787c6 commit 30a2616
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions public/tabs/chat/chat_page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,12 @@ export const ChatPage: React.FC<ChatPageProps> = (props) => {
</EuiPage>
</EuiFlyoutBody>
<EuiFlyoutFooter className={props.className}>
<EuiSpacer />
<EuiSpacer size="xs" />
<ChatInputControls
loading={chatState.llmResponding}
disabled={messagesLoading || chatState.llmResponding || !chatContext.userHasAccess}
/>
<EuiSpacer />
<EuiSpacer size="s" />
</EuiFlyoutFooter>
</>
);
Expand Down
2 changes: 1 addition & 1 deletion public/tabs/chat/controls/chat_input_controls.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const ChatInputControls: React.FC<ChatInputControlsProps> = (props) => {

return (
<EuiFlexGroup
gutterSize="m"
gutterSize="s"
alignItems="flexEnd"
justifyContent="spaceEvenly"
responsive={false}
Expand Down

0 comments on commit 30a2616

Please sign in to comment.