decentraland-ui
Version:
Decentraland's UI components and styles
35 lines (27 loc) • 411 B
CSS
.dcl.toasts {
position: fixed;
z-index: 2147483002; /* Appear over modals and intercom */
}
.dcl.toasts.top {
top: 0;
}
.dcl.toasts.bottom {
bottom: 0;
}
.dcl.toasts.left {
left: 0;
}
.dcl.toasts.right {
right: 0;
}
.dcl.toasts.top.center {
bottom: unset;
}
.dcl.toasts.bottom.center {
top: unset;
}
.dcl.toasts.center {
width: -moz-min-content;
width: min-content;
margin: auto;
}