mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
* build: Welcome ESM and Bye Bye UMD * remove package * create unbundled esm build * update script for example * fix typo * dummy commit * update autorelease script to build esm * revert dummy commit * move react, react-dom and testing library to dev dependencies * remove entry.js, publicPath and yarn install:deps script * fix * upgrade esbuild to fix glob import error for locales * remove webpack chunk names as thats not needed anymore * marking the code sideeffects free * make the library tree-shakeable and move fonts to fonts directory * allow side effects for css, scss files * remove tree-shaking * comment code for tree shaking * move to vite for example * bye bye webpack * ignore ts * separate build and output dir * use esbuild for creating bundle for example * update output dir * lint * create browser dev build with source maps and prod with minification * add dev and prod builds for bundler * lint * update script * remove await * load prod build * create minified build in dist * prod and dev builds using export field * remove import.meta * dummy * define import.meta prod and dev * fix * export types * add types field * typo * lint * Update scripts/buildPackage.js * move types inside export * newline
49 lines
910 B
SCSS
49 lines
910 B
SCSS
@import "../css/variables.module.scss";
|
|
|
|
.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;
|
|
}
|
|
}
|
|
}
|