change snackbar notification postion to bottom-left

This commit is contained in:
btzr-io 2018-10-14 20:06:10 -06:00
parent 5665bc3ee7
commit 87f098cc17

View file

@ -5,7 +5,6 @@
color: var(--snackbar-color-primary);
display: flex;
justify-content: space-between;
left: 0;
margin-left: auto;
margin-right: auto;
max-width: var(--snack-bar-width);
@ -13,8 +12,8 @@
opacity: 0.95;
padding: 14px 20px 10px 20px;
position: fixed;
right: 0;
top: $spacing-vertical;
right: $spacing-vertical;
bottom: $spacing-vertical;
transition: all var(--transition-duration) var(--transition-type);
width: 100%;
z-index: 10000; /*hack to get it over react modal */