From 818e6f7b7083f7a16a3f004c837e5c8e8049eb2b Mon Sep 17 00:00:00 2001 From: Philip Molares Date: Fri, 1 Jul 2022 14:10:48 +0200 Subject: [PATCH] fix(notification): set position of notification-area to fixed (#2155) This prevents notification to stick to the top of the page not able to be seen by users scrolled down the page. fixes #1956 Signed-off-by: Philip Molares --- src/components/notifications/notifications.module.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/notifications/notifications.module.scss b/src/components/notifications/notifications.module.scss index f62902e80..918a7bb07 100644 --- a/src/components/notifications/notifications.module.scss +++ b/src/components/notifications/notifications.module.scss @@ -1,11 +1,11 @@ -/* - * SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file) +/*! + * SPDX-FileCopyrightText: 2022 The HedgeDoc developers (see AUTHORS file) * * SPDX-License-Identifier: AGPL-3.0-only */ .notifications-area { - position: absolute; + position: fixed; top: 15px; right: 15px; z-index: 2000;