merge changes

This commit is contained in:
Andrew Gundersen 2021-06-30 08:06:11 -05:00
commit 7283e3f6f9
2 changed files with 6 additions and 42 deletions

View file

@ -13,10 +13,6 @@
props: ["modifier", "content", "child"],
setup() {
}
})
</script>
@ -74,28 +70,4 @@
border-top-right-radius: 9px;
}
// .notify {
// position: absolute;
// width: 12px;
// height: 12px;
// border-radius: 50%;
// background-color: #58D9FF;
// top: -5px;
// left: -5px;
// border: 2px solid #EBEBEB;
// transform: scale(0);
// animation-name: notify-anim;
// animation-duration: 5s;
// }
// @keyframes notify-anim {
// 0%, 90% {
// transform: scale(1);
// }
// 100% {
// transform: scale(0);
// }
// }
</style>

View file

@ -56,17 +56,9 @@ export const deleteMessage: IpcListenerCallback<string> = (payload) => {
}
// setTimeout(() => {
// console.log("updating message");
// updateMessage({
// content: ["show contacts", "msg"],
// context: "show contacts",
// uid: "ee2819a3-1125-4881-9942-ca5b3d0ad502"
// });
// }, 2000);
export default {
messages,
setMessages,
addMessage,
updateMessage
};