Toast notifications.

This commit is contained in:
Mike Cao 2020-08-31 15:57:59 -07:00
parent 2837251db7
commit aec012fb79
6 changed files with 69 additions and 1 deletions

View file

@ -0,0 +1,25 @@
.toast {
position: absolute;
top: 30px;
left: 0;
right: 0;
width: 300px;
border-radius: 5px;
display: flex;
justify-content: space-between;
align-items: center;
padding: 8px 16px;
color: var(--gray50);
background: var(--green400);
margin: auto;
z-index: 2;
cursor: pointer;
}
.message {
font-size: var(--font-size-normal);
}
.close {
margin-left: 20px;
}