mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
* feat: decouple package deps and introduce yarn workspaces * update root directory * fix * fix scripts * fix lint * update path in scripts * remove yarn.lock files from packages * ignore workspace * dummy * dummy * remove comment check * revert workflow changes * ignore ws when installing gh actions * remove log * update path * fix * fix typo
39 lines
646 B
SCSS
39 lines
646 B
SCSS
@import "open-color/open-color.scss";
|
|
|
|
.visually-hidden {
|
|
position: absolute !important;
|
|
height: 1px;
|
|
width: 1px;
|
|
overflow: hidden;
|
|
clip: rect(1px, 1px, 1px, 1px);
|
|
white-space: nowrap; /* added line */
|
|
user-select: none;
|
|
}
|
|
|
|
.LoadingMessage {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: 999;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
pointer-events: none;
|
|
|
|
.Spinner {
|
|
font-size: 2.8em;
|
|
}
|
|
|
|
.LoadingMessage-text {
|
|
margin-top: 1em;
|
|
font-size: 0.8em;
|
|
}
|
|
}
|
|
|
|
.LoadingMessage--dark {
|
|
background-color: #121212;
|
|
color: #ced4da;
|
|
}
|