Created
October 15, 2022 14:03
-
-
Save el3um4s/45c50a99dd198ef1fe1aa336d2f41c16 to your computer and use it in GitHub Desktop.
MEDIUM - How To Show Notifications in Web Application - 10
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
export let themes = { | |
danger: "#E26D69", | |
success: "#1f8c34", | |
warning: "#f0ad4e", | |
info: "#5bc0de", | |
default: "#aaaaaa", | |
}; | |
</script> | |
<!-- ... --> | |
<div | |
class="toast" | |
style="background: {themes[notification.msg.type]};"> | |
<!-- ... --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment