2016-09-07 23:00:52 +00:00
|
|
|
.toast {
|
|
|
|
background-color: $toast-background-color;
|
|
|
|
color: $toast-text-color;
|
|
|
|
padding: #{20 / $base-font-size}rem;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 40%;
|
|
|
|
display: flex;
|
|
|
|
z-index: 9999;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toast__close {
|
2016-09-13 20:42:06 +00:00
|
|
|
@include themify() {
|
|
|
|
@extend %icon;
|
2016-09-07 23:00:52 +00:00
|
|
|
}
|
2016-09-13 21:05:42 +00:00
|
|
|
color: $toast-text-color;
|
|
|
|
& g {
|
|
|
|
fill: $toast-text-color;
|
|
|
|
}
|
|
|
|
margin-left: #{10 / $base-font-size}rem;
|
2016-09-07 23:00:52 +00:00
|
|
|
}
|