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; + } }