76a5bb060e
* feat: make toast closable and allow custom duration * use Infinity to keep prevent auto close * rename to DEFAULT_TOAST_TIMEOUT and move to toast.tsx * fix * set closable as false by default and fix design * tweak css * reuse variables Co-authored-by: dwelle <luzar.david@gmail.com>
50 lines
905 B
SCSS
50 lines
905 B
SCSS
@import "../css/variables.module";
|
|
|
|
.excalidraw {
|
|
.Toast {
|
|
$closeButtonSize: 1.2rem;
|
|
$closeButtonPadding: 0.4rem;
|
|
|
|
animation: fade-in 0.5s;
|
|
background-color: var(--button-gray-1);
|
|
border-radius: 4px;
|
|
bottom: 10px;
|
|
box-sizing: border-box;
|
|
cursor: default;
|
|
left: 50%;
|
|
margin-left: -150px;
|
|
padding: 4px 0;
|
|
position: absolute;
|
|
text-align: center;
|
|
width: 300px;
|
|
z-index: 999999;
|
|
|
|
.Toast__message {
|
|
padding: 0 $closeButtonSize + ($closeButtonPadding);
|
|
color: var(--popup-text-color);
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
.close {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
padding: $closeButtonPadding;
|
|
|
|
.ToolIcon__icon {
|
|
width: $closeButtonSize;
|
|
height: $closeButtonSize;
|
|
}
|
|
}
|
|
}
|
|
|
|
@keyframes fade-in {
|
|
from {
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|