Skip to content

Commit

Permalink
[web-components] fix elevated corner radius application in dialog (#1…
Browse files Browse the repository at this point in the history
…5752)

* ensure elevated corner radius is applied to dialog

* Change files
  • Loading branch information
chrisdholt authored Oct 28, 2020
1 parent 962a5b7 commit a04560f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"type": "patch",
"comment": "ensure elevated corner radius is applied to dialog",
"packageName": "@fluentui/web-components",
"email": "chhol@microsoft.com",
"dependentChangeType": "patch",
"date": "2020-10-28T22:24:46.264Z"
}
2 changes: 1 addition & 1 deletion packages/web-components/src/dialog/dialog.styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const DialogStyles = css`
${elevation}
margin-top: auto;
margin-bottom: auto;
border-radius: calc(var(--elevated-corner-radius));
border-radius: calc(var(--elevated-corner-radius) * 1px);
width: var(--dialog-width);
height: var(--dialog-height);
background: var(--background-color);
Expand Down

0 comments on commit a04560f

Please sign in to comment.