aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/globalCssVariables.scss.d.ts
diff options
context:
space:
mode:
authorBob Zeleznik <zzzman@gmail.com>2019-04-11 20:19:57 -0400
committerBob Zeleznik <zzzman@gmail.com>2019-04-11 20:19:57 -0400
commitfd8e6bf2cacf8bed7c3363eeb777c731741266d5 (patch)
tree6b10245d44a8159b38b26d4f70150adf162cfe78 /src/client/views/globalCssVariables.scss.d.ts
parent6dd21d8ca48beef6d5054f60d04bb4412b6b33b5 (diff)
made COLLECTION_BORDER_WIDTH a CSS variable accessible from code. changed global css variable file name
Diffstat (limited to 'src/client/views/globalCssVariables.scss.d.ts')
-rw-r--r--src/client/views/globalCssVariables.scss.d.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/client/views/globalCssVariables.scss.d.ts b/src/client/views/globalCssVariables.scss.d.ts
new file mode 100644
index 000000000..e874b815d
--- /dev/null
+++ b/src/client/views/globalCssVariables.scss.d.ts
@@ -0,0 +1,8 @@
+
+interface IGlobalScss {
+ contextMenuZindex: string; // context menu shows up over everything
+ COLLECTION_BORDER_WIDTH: number;
+}
+declare const globalCssVariables: IGlobalScss;
+
+export = globalCssVariables; \ No newline at end of file