p5.js-web-editor/client/styles/components/_toast.scss
Kevin Martin Jose 8167366ce0 Style change to toasts (#316)
* Changes to toast styles

* Changes to toast styles

removed an unused variable

* removing another unused variable
2017-03-06 14:29:42 -05:00

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;
}