From 721e8a5795ce3551a6a61b61955347f148ecda88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xavier=20Juli=C3=A1n?= Date: Mon, 13 Oct 2014 12:17:49 +0200 Subject: [PATCH] [backport] Fixed notification message on top --- app/styles/components/notification-message.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/styles/components/notification-message.scss b/app/styles/components/notification-message.scss index 6f2754cf..e708dede 100644 --- a/app/styles/components/notification-message.scss +++ b/app/styles/components/notification-message.scss @@ -2,8 +2,9 @@ @include transform(translateY(-100%)); background: rgba($gray-light, .95); color: $white; + opacity: 0; padding: 1rem; - position: absolute; + position: fixed; top: 0; width: 100%; z-index: 99920; @@ -13,6 +14,7 @@ &.active { @include transform(translateY(0)); @include transition (all .6s ease-in-out); + opacity: 1; } .text { display: inline-block;