Skip to content

Commit

Permalink
define border using a single css property (microsoft#1041)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasrice authored Oct 17, 2018
1 parent 4da9ed0 commit 0d8133d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/fast-components-styles-msft/src/text-field/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ const styles: ComponentStyles<TextFieldClassNameContract, DesignSystem> = (
color: ensureForegroundNormal,
background: ensuresBackgroundNormal,
fontWeight: fontWeight.light.toString(),
border: "1px solid transparent",
borderColor: foregroundNormal,
border: `1px solid ${foregroundNormal(designSystem)}`,
boxSizing: "border-box",
borderRadius: "2px",
padding: "10px",
Expand Down

0 comments on commit 0d8133d

Please sign in to comment.