From 6dfe753d389ca4d2fd754a42113f9af05f5f91e5 Mon Sep 17 00:00:00 2001 From: Max G Date: Sun, 29 Mar 2020 23:01:37 +0000 Subject: [PATCH] Small change to make user all note option menus fade in --- client/src/components/NoteInputPanel.vue | 10 ++++----- .../src/components/SideSlideMenuComponent.vue | 22 ++++++++++++------- 2 files changed, 19 insertions(+), 13 deletions(-) diff --git a/client/src/components/NoteInputPanel.vue b/client/src/components/NoteInputPanel.vue index 8e5b4ad..1c0886a 100644 --- a/client/src/components/NoteInputPanel.vue +++ b/client/src/components/NoteInputPanel.vue @@ -191,7 +191,7 @@ - + - +
- +
- +
@@ -257,7 +257,7 @@
- +

Note Decrypted

Lock Note
diff --git a/client/src/components/SideSlideMenuComponent.vue b/client/src/components/SideSlideMenuComponent.vue index 04d9c8f..f37f08a 100644 --- a/client/src/components/SideSlideMenuComponent.vue +++ b/client/src/components/SideSlideMenuComponent.vue @@ -64,20 +64,26 @@ } - .modal-fade-enter, - .modal-fade-leave-active { - opacity: 0; - } - .modal-fade-enter-active, - .modal-fade-leave-active { - transition: opacity .5s ease; + /*.fade-enter-active {*/ + animation: fade-in .3s; + } + /*.fade-leave-active {*/ + animation: fade-in .1s reverse; + } + @keyframes fade-in { + 0% { + opacity: 0; + } + 100% { + opacity: 1; + } }