Skip to content

Commit c87f06b

Browse files
authored
[Agent Builder] fix input round styles (#242020)
1 parent a04b4e3 commit c87f06b

File tree

1 file changed

+2
-2
lines changed
  • x-pack/platform/plugins/shared/onechat/public/application/components/conversations/conversation_rounds

1 file changed

+2
-2
lines changed

x-pack/platform/plugins/shared/onechat/public/application/components/conversations/conversation_rounds/round_layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* 2.0.
66
*/
77

8-
import { EuiFlexGroup, EuiFlexItem, EuiPanel, useEuiTheme } from '@elastic/eui';
8+
import { EuiFlexGroup, EuiFlexItem, EuiPanel, euiTextBreakWord, useEuiTheme } from '@elastic/eui';
99
import { css } from '@emotion/react';
1010
import type { ReactNode } from 'react';
1111
import React, { useEffect, useState } from 'react';
@@ -49,10 +49,10 @@ export const RoundLayout: React.FC<RoundLayoutProps> = ({
4949

5050
const { euiTheme } = useEuiTheme();
5151
const inputContainerStyles = css`
52-
width: 100%;
5352
align-self: end;
5453
max-inline-size: 80%;
5554
background-color: ${euiTheme.colors.backgroundBasePrimary};
55+
${euiTextBreakWord()}
5656
`;
5757

5858
const roundContainerStyles = css`

0 commit comments

Comments
 (0)