diff options
| author | Shulhan <ms@kilabit.info> | 2021-09-11 02:28:50 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2021-09-11 02:28:50 +0700 |
| commit | b20668b0630708c866c55332e103bb0f158f8735 (patch) | |
| tree | 029d14e38920689931a313ece0a98fa673da13d3 | |
| parent | 42ebec89d615989a95019f7d1234a79e415bc207 (diff) | |
| download | pakakeh.ts-b20668b0630708c866c55332e103bb0f158f8735.tar.xz | |
notif: set the notification z-index to 10000
This fix the notification displayed below other element, while it
should be on top.
| -rw-r--r-- | notif/notif.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/notif/notif.ts b/notif/notif.ts index 8b7c4b3..8ecb331 100644 --- a/notif/notif.ts +++ b/notif/notif.ts @@ -58,6 +58,7 @@ export class WuiNotif { position: fixed; top: 1em; width: 80%; + z-index: 10000; } .${WUI_NOTIF_CLASS_INFO} { border: 1px solid silver; |
