aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/DocuLinkBox.tsx
diff options
context:
space:
mode:
authorbob <bcz@cs.brown.edu>2019-10-17 17:15:57 -0400
committerbob <bcz@cs.brown.edu>2019-10-17 17:15:57 -0400
commit88d6bf5cde062df6afbf628f4ac78092bd1f4494 (patch)
tree79321b5a7748a7deddf1ee09b0bafbdf621bc71f /src/client/views/nodes/DocuLinkBox.tsx
parent4808cb20b2c814e7b9cd92f88bba133994768e93 (diff)
another quick fix for contentscaled docs and linkanchors.
Diffstat (limited to 'src/client/views/nodes/DocuLinkBox.tsx')
-rw-r--r--src/client/views/nodes/DocuLinkBox.tsx1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/views/nodes/DocuLinkBox.tsx b/src/client/views/nodes/DocuLinkBox.tsx
index b39eb3788..2e968a9f6 100644
--- a/src/client/views/nodes/DocuLinkBox.tsx
+++ b/src/client/views/nodes/DocuLinkBox.tsx
@@ -71,6 +71,7 @@ export class DocuLinkBox extends DocComponent<FieldViewProps, DocLinkSchema>(Doc
return <div onPointerDown={this.onPointerDown} onClick={this.onClick} title={StrCast((this.props.Document[this.props.fieldKey === "anchor1" ? "anchor2" : "anchor1"]! as Doc).title)} ref={this._ref} style={{
cursor: "default", position: "absolute", background: c, width: "25px", height: "25px", borderRadius: "20px", textAlign: "center", left: `calc(${x}% - 12.5px)`, top: `calc(${y}% - 12.5px)`,
pointerEvents: "all",
+ transform: `scale(${1 / this.props.ContentScaling()})`,
}} />
}
}