mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
* support ToolIcon className and fix label padding * factor some ExportDialog classes out to Modal * initial RoomDialog prototype * change label for another-session button * remove unused css * add color comments * Move the collaboration button to the main menu, add support for mobile * remove button for creating another session * add locks * Fix alignment issue * Reorder button * reuse current scene for collab session * keep collaboration state on restore Co-authored-by: Jed Fox <git@twopointzero.us>
27 lines
716 B
CSS
27 lines
716 B
CSS
.ExportDialog__preview {
|
|
--preview-padding: calc(var(--space-factor) * 4);
|
|
|
|
background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAMUlEQVQ4T2NkYGAQYcAP3uCTZhw1gGGYhAGBZIA/nYDCgBDAm9BGDWAAJyRCgLaBCAAgXwixzAS0pgAAAABJRU5ErkJggg==")
|
|
left center;
|
|
text-align: center;
|
|
padding: var(--preview-padding);
|
|
margin-bottom: calc(var(--space-factor) * 3);
|
|
}
|
|
|
|
.ExportDialog__preview canvas {
|
|
max-width: calc(100% - var(--preview-padding) * 2);
|
|
max-height: 25rem;
|
|
}
|
|
|
|
.ExportDialog__actions {
|
|
display: flex;
|
|
align-items: top;
|
|
justify-content: space-between;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.ExportDialog__scales {
|
|
display: flex;
|
|
align-items: baseline;
|
|
justify-content: flex-end;
|
|
}
|