.next-toast {
position: fixed;
pointer-events: none;
}
.next-toast:hover {
pointer-events: auto;
}
.next-toast__toast {
position: absolute;
bottom: 0;
right: 0;
width: 100%;
pointer-events: auto;
}
.next-toast__toast-content {
display: flex;
align-items: start;
}
.next-toast__toast-body {
flex: 1;
min-width: 0;
display: flex;
flex-direction: column;
}
.next-toast__toast-close {
flex-shrink: 0;
cursor: pointer;
border: none;
background: transparent;
display: flex;
width: var(--dimensions);
height: var(--dimensions);
transition: background 0.2s ease;
}
.next-toast__toast-close > svg{
width: 100%;
height: 100%;
}