From 7a6b31d8f83ee2fe32155b516983888a0ad8a2e1 Mon Sep 17 00:00:00 2001 From: Sean Date: Thu, 20 May 2021 12:20:23 +0200 Subject: [PATCH] Hide cursor in full screen projector Hides the cursor when hovering over the full screen projectors containers --- .../fullscreen-projector/fullscreen-projector.component.html | 2 +- client/src/styles.scss | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/client/src/app/fullscreen-projector/fullscreen-projector/fullscreen-projector.component.html b/client/src/app/fullscreen-projector/fullscreen-projector/fullscreen-projector.component.html index 5ab3e800e..ca0b1c8f9 100644 --- a/client/src/app/fullscreen-projector/fullscreen-projector/fullscreen-projector.component.html +++ b/client/src/app/fullscreen-projector/fullscreen-projector/fullscreen-projector.component.html @@ -1,5 +1,5 @@
-
+
diff --git a/client/src/styles.scss b/client/src/styles.scss index 492b6fd77..0f156b931 100644 --- a/client/src/styles.scss +++ b/client/src/styles.scss @@ -819,3 +819,7 @@ button.mat-menu-item.selected { .hide-height { height: 0 !important; } + +.nocursor { + cursor: none; +}