mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-04-14 16:40:58 -04:00
Co-authored-by: Lipis <lipiridis@gmail.com> Co-authored-by: dwelle <luzar.david@gmail.com>
10 lines
322 B
SCSS
10 lines
322 B
SCSS
@import "open-color/open-color.scss";
|
|
|
|
// keep up to date with is-mobile.tsx
|
|
$is-mobile-query: "(max-width: 600px), (max-height: 500px) and (max-width: 1000px)";
|
|
$appearance-filter: "invert(93%) hue-rotate(180deg)";
|
|
|
|
:export {
|
|
isMobileQuery: unquote($is-mobile-query);
|
|
appearanceFilter: unquote($appearance-filter);
|
|
}
|