8167366ce0
* Changes to toast styles * Changes to toast styles removed an unused variable * removing another unused variable
18 lines
No EOL
360 B
SCSS
18 lines
No EOL
360 B
SCSS
.toast {
|
|
background-color: $toast-background-color;
|
|
color: $toast-text-color;
|
|
padding: #{10 / $base-font-size}rem;
|
|
position: absolute;
|
|
top: 0;
|
|
right: 40%;
|
|
display: flex;
|
|
z-index: 9999;
|
|
box-shadow: 0 6px 6px 0 rgba(0,0,0,0.10);
|
|
}
|
|
|
|
.toast__close {
|
|
@include themify() {
|
|
@extend %icon-toast;
|
|
}
|
|
margin-left: #{20 / $base-font-size}rem;
|
|
} |