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