You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
473 B
SCSS
27 lines
473 B
SCSS
/* Toasts */
|
|
.toast-container{
|
|
position:fixed;
|
|
z-index:9;
|
|
bottom: 0;
|
|
padding:1rem;
|
|
pointer-events:none; /* Prevent interaction */
|
|
width:100%;
|
|
}
|
|
.toast{
|
|
text-align:center;
|
|
display:block;
|
|
}
|
|
.toast__inner{
|
|
margin:0 auto;
|
|
font:1.4rem sans-serif;color:$content;
|
|
padding: 1.2rem 2rem;border-radius:.3rem;
|
|
background:#222;
|
|
color:$white;text-align:center;
|
|
box-shadow: 0px 2px 8px -5px rgba(0, 0, 0, 1);
|
|
display:inline-block;
|
|
}
|
|
.toast + .toast{
|
|
margin-top:.4rem;
|
|
}
|
|
|