Skip to content

Commit f120ae5

Browse files
Update split button border radius (#1609)
* update split bar button border radius * update corners for split button dropdowns * Change files * Update @internal-react-composites-093c2064-8b62-442d-bf87-d075572716be.json
1 parent a8454e2 commit f120ae5

2 files changed

Lines changed: 10 additions & 2 deletions

File tree

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"type": "minor",
3+
"comment": "Increase the border radius of buttons in composites with call features",
4+
"packageName": "@internal/react-composites",
5+
"email": "94866715+dmceachernmsft@users.noreply.github.com",
6+
"dependentChangeType": "none"
7+
}

packages/react-composites/src/composites/CallWithChatComposite/CallWithChatControlBar.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ const desktopControlBarStyles: BaseCustomStyles = {
192192
const getDesktopCommonButtonStyles = (theme: ITheme): ControlBarButtonStyles => ({
193193
root: {
194194
border: `solid 1px ${theme.palette.neutralQuaternaryAlt}`,
195-
borderRadius: theme.effects.roundedCorner2,
195+
borderRadius: theme.effects.roundedCorner4,
196196
minHeight: '2.5rem',
197197
maxWidth: '12rem' // allot extra space than the regular ControlBarButton. This is to give extra room to have the icon beside the text.
198198
},
@@ -224,7 +224,8 @@ const getDesktopCommonButtonStyles = (theme: ITheme): ControlBarButtonStyles =>
224224
},
225225
splitButtonMenuButton: {
226226
border: `solid 1px ${theme.palette.neutralQuaternaryAlt}`,
227-
borderRadius: theme.effects.roundedCorner2,
227+
borderTopRightRadius: theme.effects.roundedCorner4,
228+
borderBottomRightRadius: theme.effects.roundedCorner4,
228229
borderTopLeftRadius: '0',
229230
borderBottomLeftRadius: '0'
230231
},

0 commit comments

Comments
 (0)