From ea2ebc5c4b64ba4eeb6dfe773d5e1482ebdf587a Mon Sep 17 00:00:00 2001 From: Jas Singh Date: Mon, 12 Aug 2024 22:46:37 -0700 Subject: [PATCH] Fixed a deadzone caused by notifications. (#119) --- modules/notifications/index.ts | 4 ++-- scss/style/notifications/popups.scss | 4 ---- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/modules/notifications/index.ts b/modules/notifications/index.ts index fdc4ced..ab41097 100644 --- a/modules/notifications/index.ts +++ b/modules/notifications/index.ts @@ -34,13 +34,13 @@ export default () => { if (activeMonitor === true) { return curMon; } - + return mon; } ), layer: "overlay", anchor: position.bind("value").as(v => getPosition(v)), - exclusivity: "ignore", + exclusivity: "normal", child: Widget.Box({ class_name: "notification-card-container", vertical: true, diff --git a/scss/style/notifications/popups.scss b/scss/style/notifications/popups.scss index 1c80651..c1631d9 100644 --- a/scss/style/notifications/popups.scss +++ b/scss/style/notifications/popups.scss @@ -1,7 +1,3 @@ -.notification-card-container { - margin-top: 3.5rem; -} - .notification-card { color: $notification-text; background: $notification-background;