Fixed a deadzone caused by notifications. (#119)

This commit is contained in:
Jas Singh
2024-08-12 22:46:37 -07:00
committed by GitHub
parent b23f1a32cb
commit ea2ebc5c4b
2 changed files with 2 additions and 6 deletions

View File

@@ -34,13 +34,13 @@ export default () => {
if (activeMonitor === true) { if (activeMonitor === true) {
return curMon; return curMon;
} }
return mon; return mon;
} }
), ),
layer: "overlay", layer: "overlay",
anchor: position.bind("value").as(v => getPosition(v)), anchor: position.bind("value").as(v => getPosition(v)),
exclusivity: "ignore", exclusivity: "normal",
child: Widget.Box({ child: Widget.Box({
class_name: "notification-card-container", class_name: "notification-card-container",
vertical: true, vertical: true,

View File

@@ -1,7 +1,3 @@
.notification-card-container {
margin-top: 3.5rem;
}
.notification-card { .notification-card {
color: $notification-text; color: $notification-text;
background: $notification-background; background: $notification-background;