From 123fa6681f215ecca7aa6e6c8de3ef3f3b533815 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Mon, 27 Mar 2023 10:37:40 +0200 Subject: [PATCH] fix(notifications) drop no longer used css file (#13100) --- css/_notifications.scss | 23 ----------------------- css/main.scss | 1 - 2 files changed, 24 deletions(-) delete mode 100644 css/_notifications.scss diff --git a/css/_notifications.scss b/css/_notifications.scss deleted file mode 100644 index 7406022035..0000000000 --- a/css/_notifications.scss +++ /dev/null @@ -1,23 +0,0 @@ -.notification-appear, .notification-enter { - opacity: 0; - position: relative; - left: -200px; - transition: all .2s !important; // !important needed to overwrite atlaskit default style - - &-active { - opacity: 1; - left: 0; - } -} - -.notification-exit { - opacity: 1; - position: relative; - left: 0; - transition: all .2s !important; // !important needed to overwrite atlaskit default style - - &-active { - opacity: 0; - left: -200px; - } -} diff --git a/css/main.scss b/css/main.scss index ff1bba477b..0881b075d5 100644 --- a/css/main.scss +++ b/css/main.scss @@ -89,6 +89,5 @@ $flagsImagePath: "../images/"; @import 'reactions-menu'; @import 'plan-limit'; @import 'polls'; -@import 'notifications'; /* Modules END */