From 6f52cf97ce13437d969edde5a34c4648f1cf04c1 Mon Sep 17 00:00:00 2001 From: Tony Air Date: Fri, 15 Oct 2021 22:47:09 +0200 Subject: [PATCH] IMPR: Alerts styling --- src/scss/layout/main/alerts.scss | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/src/scss/layout/main/alerts.scss b/src/scss/layout/main/alerts.scss index 38498a5..7fee7d0 100644 --- a/src/scss/layout/main/alerts.scss +++ b/src/scss/layout/main/alerts.scss @@ -1,14 +1,10 @@ #SiteWideAlerts { - bottom: 0; - position: fixed; - right: 0; - z-index: 99999; - .btn-close { background: none; } .alert { + display: flex; margin-bottom: 0; } } @@ -17,13 +13,13 @@ display: none; } -.is-online { +body.is-online { .alert-offline { display: none; } } -.is-offline { +body.is-offline { .alert-offline { display: flex; }