Skip to content

Commit

Permalink
(web-components) update default corner radius to 4 (#18231)
Browse files Browse the repository at this point in the history
* update web component corner radius token value to 4

* Change files
  • Loading branch information
chrisdholt committed Jun 8, 2021
1 parent 758f3a7 commit 0fd43ed
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "minor",
"comment": "update web component corner radius token value to 4",
"packageName": "@fluentui/web-components",
"email": "[email protected]",
"dependentChangeType": "patch"
}
2 changes: 1 addition & 1 deletion packages/web-components/src/design-tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export const bodyFont = create<string>('body-font').withDefault('Segoe UI, sans-
export const baseHeightMultiplier = create<number>('base-height-multiplier').withDefault(8);
export const baseHorizontalSpacingMultiplier = create<number>('base-horizontal-spacing-multiplier').withDefault(3);
export const baseLayerLuminance = create<number>('base-layer-luminance').withDefault(StandardLuminance.LightMode);
export const cornerRadius = create<number>('corner-radius').withDefault(2);
export const cornerRadius = create<number>('corner-radius').withDefault(4);
export const density = create<number>('density').withDefault(0);
export const designUnit = create<number>('design-unit').withDefault(4);
export const direction = create<Direction>('direction').withDefault(Direction.ltr);
Expand Down

0 comments on commit 0fd43ed

Please sign in to comment.