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
50 lines
982 B
SCSS
50 lines
982 B
SCSS
@import "open-color/open-color.scss";
|
|
@import "../css/variables.module.scss";
|
|
|
|
.excalidraw {
|
|
.App-toolbar {
|
|
&.zen-mode {
|
|
.ToolIcon__keybinding,
|
|
.HintViewer {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
&__divider {
|
|
width: 1px;
|
|
height: 1.5rem;
|
|
align-self: center;
|
|
background-color: var(--default-border-color);
|
|
margin: 0 0.25rem;
|
|
|
|
@include isMobile {
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.App-toolbar__extra-tools-trigger {
|
|
box-shadow: none;
|
|
border: 0;
|
|
background-color: transparent;
|
|
|
|
&:active {
|
|
background-color: var(--button-hover-bg);
|
|
box-shadow: 0 0 0 1px
|
|
var(--button-active-border, var(--color-primary-darkest)) inset;
|
|
}
|
|
|
|
&--selected,
|
|
&--selected:hover {
|
|
background: var(--color-primary-light);
|
|
color: var(--color-primary);
|
|
}
|
|
}
|
|
|
|
.App-toolbar__extra-tools-dropdown {
|
|
margin-top: 0.375rem;
|
|
right: 0;
|
|
min-width: 11.875rem;
|
|
z-index: 1;
|
|
}
|
|
}
|