diff options
author | Stanley Yip <33562077+yipstanley@users.noreply.github.com> | 2020-01-20 17:30:37 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-20 17:30:37 -0500 |
commit | 65c0769d420841765cb9545a4c99213c4433e7af (patch) | |
tree | cec7e1ea69596513c373c2245610b5e4a679da56 /src/client/views/nodes/ButtonBox.tsx | |
parent | cc2cbf44ba5c30a70bad2ffd7a57d2c6d17d0e4e (diff) | |
parent | 758d960b4251672c9615b0bf53ea992065ca524b (diff) |
Merge pull request #331 from browngraphicslab/pen
Pen
Diffstat (limited to 'src/client/views/nodes/ButtonBox.tsx')
-rw-r--r-- | src/client/views/nodes/ButtonBox.tsx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/client/views/nodes/ButtonBox.tsx b/src/client/views/nodes/ButtonBox.tsx index d1272c266..d29fe1711 100644 --- a/src/client/views/nodes/ButtonBox.tsx +++ b/src/client/views/nodes/ButtonBox.tsx @@ -80,7 +80,10 @@ export class ButtonBox extends DocComponent<FieldViewProps, ButtonDocument>(Butt return ( <div className="buttonBox-outerDiv" ref={this.createDropTarget} onContextMenu={this.specificContextMenu} style={{ boxShadow: this.Document.opacity === 0 ? undefined : StrCast(this.Document.boxShadow, "") }}> - <div className="buttonBox-mainButton" style={{ background: this.Document.backgroundColor || "", color: this.Document.color || "black", fontSize: this.Document.fontSize }} > + <div className="buttonBox-mainButton" style={{ + background: this.Document.backgroundColor, color: this.Document.color || "black", + fontSize: this.Document.fontSize, letterSpacing: this.Document.letterSpacing || "", textTransform: this.Document.textTransform || "" + }} > <div className="buttonBox-mainButtonCenter"> {(this.Document.text || this.Document.title)} </div> |