Skip to content

Instantly share code, notes, and snippets.

@el3um4s
Created October 15, 2022 14:03
Show Gist options
  • Save el3um4s/45c50a99dd198ef1fe1aa336d2f41c16 to your computer and use it in GitHub Desktop.
Save el3um4s/45c50a99dd198ef1fe1aa336d2f41c16 to your computer and use it in GitHub Desktop.
MEDIUM - How To Show Notifications in Web Application - 10
<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