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;
|
2019-04-17 20:51:58 +00:00
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, 0);
|
2018-02-27 17:28:17 +00:00
|
|
|
min-width: #{375 / $base-font-size}rem; //500px
|
|
|
|
font-size: #{20 / $base-font-size}rem;
|
2016-09-07 23:00:52 +00:00
|
|
|
display: flex;
|
|
|
|
z-index: 9999;
|
2018-02-27 17:28:17 +00:00
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
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
|
|
|
}
|
2018-02-27 17:28:17 +00:00
|
|
|
padding-top: #{10 / $base-font-size}rem;
|
|
|
|
margin-left: #{40 / $base-font-size}rem;
|
2016-09-07 23:00:52 +00:00
|
|
|
}
|