aboutsummaryrefslogtreecommitdiff
path: root/src/client/util/DragManager.ts
diff options
context:
space:
mode:
authorTyler Schicke <tyler_schicke@brown.edu>2019-04-11 15:57:32 -0400
committerTyler Schicke <tyler_schicke@brown.edu>2019-04-11 15:57:32 -0400
commit6e90a5a7f4d4ed3e92d2ff8af6c1400768c95cd0 (patch)
treed1fcee990c64cec2cde351841915b02e58c1eb2d /src/client/util/DragManager.ts
parent50be8cb7a93110821c972c679567ddb6aae8bc6f (diff)
Fixed style import stuff
Diffstat (limited to 'src/client/util/DragManager.ts')
-rw-r--r--src/client/util/DragManager.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/util/DragManager.ts b/src/client/util/DragManager.ts
index d66c6e90f..333c474c1 100644
--- a/src/client/util/DragManager.ts
+++ b/src/client/util/DragManager.ts
@@ -5,8 +5,8 @@ import { CollectionDockingView } from "../views/collections/CollectionDockingVie
import { DocumentDecorations } from "../views/DocumentDecorations";
import { Main } from "../views/Main";
import { DocumentView } from "../views/nodes/DocumentView";
-import globalStyles from "../views/_global_variables";
-// import globalStyleVariables from "../views/_global_variables.scss"; // bcz: why doesn't this work?
+// import globalStyles from "../views/_global_variables";
+import * as globalStyles from "../views/_global_variables.scss"; // bcz: why doesn't this work?
export function setupDrag(_reference: React.RefObject<HTMLDivElement>, docFunc: () => Document, moveFunc?: DragManager.MoveFunction, copyOnDrop: boolean = false) {
let onRowMove = action((e: PointerEvent): void => {