2016-09-07 23:00:52 +00:00
|
|
|
.toast {
|
|
|
|
background-color: $toast-background-color;
|
|
|
|
color: $toast-text-color;
|
2017-03-06 19:29:42 +00:00
|
|
|
padding: #{10 / $base-font-size}rem;
|
2016-09-07 23:00:52 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 40%;
|
|
|
|
display: flex;
|
|
|
|
z-index: 9999;
|
2017-03-06 19:29:42 +00:00
|
|
|
box-shadow: 0 6px 6px 0 rgba(0,0,0,0.10);
|
2016-09-07 23:00:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.toast__close {
|
2016-09-13 20:42:06 +00:00
|
|
|
@include themify() {
|
2017-03-06 19:29:42 +00:00
|
|
|
@extend %icon-toast;
|
2016-09-07 23:00:52 +00:00
|
|
|
}
|
2017-03-06 19:29:42 +00:00
|
|
|
margin-left: #{20 / $base-font-size}rem;
|
2016-09-07 23:00:52 +00:00
|
|
|
}
|