Skip to content

Commit 4c93ccb

Browse files
[RTE] Fix a layout issue for the rich text insert table menu (#4485)
1 parent b7a2f7b commit 4c93ccb

2 files changed

Lines changed: 11 additions & 1 deletion

File tree

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"type": "none",
3+
"area": "fix",
4+
"workstream": "RTE",
5+
"comment": "Fix a layout issue for the insert table menu",
6+
"packageName": "@azure/communication-react",
7+
"email": "98852890+vhuseinova-msft@users.noreply.github.com",
8+
"dependentChangeType": "none"
9+
}

packages/react-components/src/components/styles/RichTextEditor.styles.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,8 @@ export const insertTableMenuFocusZone = (theme: Theme): string => {
289289
return mergeStyles({
290290
lineHeight: '12px',
291291
width: '5.125rem',
292-
border: `solid 0.0625rem ${theme.palette.neutralTertiaryAlt}`
292+
border: `solid 0.0625rem ${theme.palette.neutralTertiaryAlt}`,
293+
boxSizing: 'border-box'
293294
});
294295
};
295296

0 commit comments

Comments
 (0)