Skip to content

Instantly share code, notes, and snippets.

@el3um4s
Created October 15, 2022 14:02
Show Gist options
  • Save el3um4s/d99310c202efc6a855301cf7c196be58 to your computer and use it in GitHub Desktop.
Save el3um4s/d99310c202efc6a855301cf7c196be58 to your computer and use it in GitHub Desktop.
MEDIUM - How To Show Notifications in Web Application - 09
.notifications {
position: fixed;
top: 64px;
left: 0;
right: 8px;
margin: 0 auto;
padding: 0;
z-index: 9999;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-end;
pointer-events: none;
}
.toast {
flex: 1;
margin-bottom: 10px;
min-width: 240px;
padding: 10px;
text-align: center;
border: 4px solid transparent;
border-radius: 2px;
}
.content {
padding: 10px;
display: block;
color: white;
font-weight: 500;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment