@excalidraw/excalidraw 0.18.0-195a743 → 0.18.0-200a6bd94
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/dev/chunk-CP5DND7P.js +7 -0
- package/dist/dev/chunk-CP5DND7P.js.map +7 -0
- package/dist/dev/{chunk-T3M44BFV.js → chunk-QF5FRM6O.js} +12 -4
- package/dist/dev/chunk-QF5FRM6O.js.map +7 -0
- package/dist/dev/chunk-VISTIWDQ.js +5668 -0
- package/dist/dev/chunk-VISTIWDQ.js.map +7 -0
- package/dist/dev/data/{image-TTQKTTOH.js → image-XM2PNARE.js} +3 -3
- package/dist/dev/index.css +89 -22
- package/dist/dev/index.css.map +3 -3
- package/dist/dev/index.js +7634 -9487
- package/dist/dev/index.js.map +4 -4
- package/dist/dev/locales/{en-I23TB6DJ.js → en-SMAPCEOQ.js} +2 -2
- package/dist/dev/subset-shared.chunk.js +1 -1
- package/dist/dev/subset-worker.chunk.js +1 -1
- package/dist/prod/chunk-A66AFZZU.js +7 -0
- package/dist/prod/chunk-I4UNSFV6.js +12 -0
- package/dist/prod/chunk-YZO7PSYQ.js +4 -0
- package/dist/prod/data/image-53OPA26C.js +1 -0
- package/dist/prod/index.css +1 -1
- package/dist/prod/index.js +26 -19
- package/dist/prod/locales/{en-TC3OFDA6.js → en-TYY6KWIJ.js} +1 -1
- package/dist/prod/subset-shared.chunk.js +1 -1
- package/dist/prod/subset-worker.chunk.js +1 -1
- package/dist/types/common/src/constants.d.ts +20 -3
- package/dist/types/{excalidraw → common/src}/emitter.d.ts +1 -1
- package/dist/types/common/src/font-metadata.d.ts +4 -2
- package/dist/types/common/src/index.d.ts +1 -0
- package/dist/types/common/src/utility-types.d.ts +5 -0
- package/dist/types/common/src/utils.d.ts +15 -5
- package/dist/types/element/src/Scene.d.ts +4 -4
- package/dist/types/element/src/align.d.ts +3 -2
- package/dist/types/element/src/binding.d.ts +11 -8
- package/dist/types/element/src/bounds.d.ts +12 -4
- package/dist/types/element/src/collision.d.ts +18 -12
- package/dist/types/element/src/cropElement.d.ts +1 -1
- package/dist/types/{excalidraw/change.d.ts → element/src/delta.d.ts} +73 -38
- package/dist/types/element/src/distance.d.ts +2 -2
- package/dist/types/element/src/distribute.d.ts +2 -1
- package/dist/types/element/src/dragElements.d.ts +1 -1
- package/dist/types/element/src/flowchart.d.ts +1 -1
- package/dist/types/element/src/fractionalIndex.d.ts +8 -2
- package/dist/types/element/src/frame.d.ts +3 -2
- package/dist/types/element/src/groups.d.ts +1 -0
- package/dist/types/element/src/index.d.ts +43 -2
- package/dist/types/element/src/linearElementEditor.d.ts +17 -30
- package/dist/types/element/src/mutateElement.d.ts +1 -1
- package/dist/types/element/src/newElement.d.ts +3 -2
- package/dist/types/element/src/resizeElements.d.ts +2 -1
- package/dist/types/element/src/selection.d.ts +0 -5
- package/dist/types/element/src/shape.d.ts +42 -0
- package/dist/types/element/src/sizeHelpers.d.ts +2 -1
- package/dist/types/element/src/store.d.ts +232 -0
- package/dist/types/element/src/textElement.d.ts +1 -1
- package/dist/types/element/src/typeChecks.d.ts +16 -1
- package/dist/types/element/src/types.d.ts +13 -3
- package/dist/types/element/src/utils.d.ts +16 -6
- package/dist/types/element/src/zindex.d.ts +3 -3
- package/dist/types/excalidraw/actions/actionAddToLibrary.d.ts +36 -48
- package/dist/types/excalidraw/actions/actionBoundText.d.ts +24 -32
- package/dist/types/excalidraw/actions/actionCanvas.d.ts +160 -212
- package/dist/types/excalidraw/actions/actionClipboard.d.ts +72 -94
- package/dist/types/excalidraw/actions/actionCropEditor.d.ts +12 -16
- package/dist/types/excalidraw/actions/actionDeleteSelected.d.ts +36 -47
- package/dist/types/excalidraw/actions/actionElementLink.d.ts +11 -15
- package/dist/types/excalidraw/actions/actionElementLock.d.ts +39 -48
- package/dist/types/excalidraw/actions/actionEmbeddable.d.ts +12 -16
- package/dist/types/excalidraw/actions/actionExport.d.ts +118 -154
- package/dist/types/excalidraw/actions/actionFinalize.d.ts +71 -38
- package/dist/types/excalidraw/actions/actionFrame.d.ts +95 -111
- package/dist/types/excalidraw/actions/actionGroup.d.ts +24 -32
- package/dist/types/excalidraw/actions/actionHistory.d.ts +1 -2
- package/dist/types/excalidraw/actions/actionLinearEditor.d.ts +537 -17
- package/dist/types/excalidraw/actions/actionLink.d.ts +12 -16
- package/dist/types/excalidraw/actions/actionMenu.d.ts +35 -47
- package/dist/types/excalidraw/actions/actionNavigate.d.ts +24 -32
- package/dist/types/excalidraw/actions/actionProperties.d.ts +186 -238
- package/dist/types/excalidraw/actions/actionSelectAll.d.ts +12 -16
- package/dist/types/excalidraw/actions/actionStyles.d.ts +12 -16
- package/dist/types/excalidraw/actions/actionToggleGridMode.d.ts +12 -16
- package/dist/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +12 -16
- package/dist/types/excalidraw/actions/actionToggleSearchMenu.d.ts +11 -188
- package/dist/types/excalidraw/actions/actionToggleStats.d.ts +12 -16
- package/dist/types/excalidraw/actions/actionToggleViewMode.d.ts +12 -16
- package/dist/types/excalidraw/actions/actionToggleZenMode.d.ts +12 -16
- package/dist/types/excalidraw/actions/actionZindex.d.ts +2 -2
- package/dist/types/excalidraw/actions/types.d.ts +3 -2
- package/dist/types/excalidraw/appState.d.ts +16 -7
- package/dist/types/excalidraw/components/Actions.d.ts +0 -4
- package/dist/types/excalidraw/components/App.d.ts +18 -20
- package/dist/types/excalidraw/components/ButtonIcon.d.ts +1 -0
- package/dist/types/excalidraw/components/ColorPicker/ColorInput.d.ts +2 -1
- package/dist/types/excalidraw/components/ColorPicker/ColorPicker.d.ts +5 -1
- package/dist/types/excalidraw/components/ColorPicker/CustomColorList.d.ts +1 -1
- package/dist/types/excalidraw/components/ColorPicker/Picker.d.ts +2 -3
- package/dist/types/excalidraw/components/ColorPicker/PickerColorList.d.ts +2 -3
- package/dist/types/excalidraw/components/ColorPicker/ShadeList.d.ts +2 -2
- package/dist/types/excalidraw/components/ColorPicker/TopPicks.d.ts +1 -1
- package/dist/types/excalidraw/components/ColorPicker/colorPickerUtils.d.ts +1 -1
- package/dist/types/excalidraw/components/ColorPicker/keyboardNavHandlers.d.ts +1 -1
- package/dist/types/excalidraw/components/ConvertElementTypePopup.d.ts +2 -28
- package/dist/types/excalidraw/components/ElementLinkDialog.d.ts +1 -1
- package/dist/types/excalidraw/components/Ellipsify.d.ts +4 -0
- package/dist/types/excalidraw/components/{ButtonIconSelect.d.ts → RadioSelection.d.ts} +1 -1
- package/dist/types/excalidraw/components/Range.d.ts +3 -3
- package/dist/types/excalidraw/components/Stats/Angle.d.ts +1 -1
- package/dist/types/excalidraw/components/Stats/CanvasGrid.d.ts +1 -1
- package/dist/types/excalidraw/components/Stats/Collapsible.d.ts +2 -1
- package/dist/types/excalidraw/components/Stats/Dimension.d.ts +1 -1
- package/dist/types/excalidraw/components/Stats/DragInput.d.ts +12 -2
- package/dist/types/excalidraw/components/Stats/FontSize.d.ts +1 -1
- package/dist/types/excalidraw/components/Stats/MultiAngle.d.ts +1 -1
- package/dist/types/excalidraw/components/Stats/MultiDimension.d.ts +1 -1
- package/dist/types/excalidraw/components/Stats/MultiFontSize.d.ts +1 -1
- package/dist/types/excalidraw/components/Stats/MultiPosition.d.ts +1 -1
- package/dist/types/excalidraw/components/Stats/Position.d.ts +1 -1
- package/dist/types/excalidraw/components/Stats/utils.d.ts +2 -1
- package/dist/types/excalidraw/components/UnlockPopup.d.ts +8 -0
- package/dist/types/excalidraw/components/hyperlink/Hyperlink.d.ts +1 -1
- package/dist/types/excalidraw/components/hyperlink/helpers.d.ts +2 -1
- package/dist/types/excalidraw/components/icons.d.ts +3 -0
- package/dist/types/excalidraw/components/shapes.d.ts +1 -1
- package/dist/types/excalidraw/data/reconcile.d.ts +1 -0
- package/dist/types/excalidraw/data/transform.d.ts +1 -1
- package/dist/types/excalidraw/eraser/index.d.ts +0 -2
- package/dist/types/excalidraw/fonts/Fonts.d.ts +1 -1
- package/dist/types/excalidraw/history.d.ts +30 -22
- package/dist/types/excalidraw/hooks/useEmitter.d.ts +1 -1
- package/dist/types/excalidraw/index.d.ts +10 -9
- package/dist/types/excalidraw/lasso/index.d.ts +1 -0
- package/dist/types/excalidraw/lasso/utils.d.ts +2 -1
- package/dist/types/excalidraw/renderer/helpers.d.ts +7 -2
- package/dist/types/excalidraw/renderer/staticScene.d.ts +4 -1
- package/dist/types/excalidraw/scene/Renderer.d.ts +1 -2
- package/dist/types/excalidraw/scene/index.d.ts +2 -2
- package/dist/types/excalidraw/snapping.d.ts +2 -2
- package/dist/types/excalidraw/types.d.ts +27 -14
- package/dist/types/math/src/angle.d.ts +2 -0
- package/dist/types/math/src/constants.d.ts +3 -0
- package/dist/types/math/src/curve.d.ts +34 -0
- package/dist/types/math/src/index.d.ts +1 -0
- package/dist/types/math/src/point.d.ts +1 -1
- package/dist/types/math/src/rectangle.d.ts +2 -0
- package/dist/types/math/src/vector.d.ts +8 -2
- package/dist/types/utils/src/bbox.d.ts +1 -1
- package/dist/types/utils/src/index.d.ts +1 -1
- package/dist/types/utils/src/withinBounds.d.ts +1 -1
- package/history.ts +147 -110
- package/package.json +12 -9
- package/dist/dev/chunk-H3EW23X2.js +0 -18294
- package/dist/dev/chunk-H3EW23X2.js.map +0 -7
- package/dist/dev/chunk-T3M44BFV.js.map +0 -7
- package/dist/dev/chunk-WMGEUIQQ.js +0 -7
- package/dist/dev/chunk-WMGEUIQQ.js.map +0 -7
- package/dist/prod/chunk-2Z7RPVPO.js +0 -12
- package/dist/prod/chunk-7M43VNIB.js +0 -33
- package/dist/prod/chunk-GK4XUKZB.js +0 -7
- package/dist/prod/data/image-7YYIWLVQ.js +0 -1
- package/dist/types/element/src/Shape.d.ts +0 -17
- package/dist/types/element/src/ShapeCache.d.ts +0 -25
- package/dist/types/element/src/shapes.d.ts +0 -23
- package/dist/types/excalidraw/components/ButtonSelect.d.ts +0 -9
- package/dist/types/excalidraw/store.d.ts +0 -129
- package/dist/types/excalidraw/visualdebug.d.ts +0 -41
- package/dist/types/utils/src/collision.d.ts +0 -8
- /package/dist/dev/data/{image-TTQKTTOH.js.map → image-XM2PNARE.js.map} +0 -0
- /package/dist/dev/locales/{en-I23TB6DJ.js.map → en-SMAPCEOQ.js.map} +0 -0
|
@@ -2,12 +2,12 @@ import {
|
|
|
2
2
|
decodePngMetadata,
|
|
3
3
|
encodePngMetadata,
|
|
4
4
|
getTEXtChunk
|
|
5
|
-
} from "../chunk-
|
|
6
|
-
import "../chunk-
|
|
5
|
+
} from "../chunk-VISTIWDQ.js";
|
|
6
|
+
import "../chunk-CP5DND7P.js";
|
|
7
7
|
import "../chunk-XDFCUUT6.js";
|
|
8
8
|
export {
|
|
9
9
|
decodePngMetadata,
|
|
10
10
|
encodePngMetadata,
|
|
11
11
|
getTEXtChunk
|
|
12
12
|
};
|
|
13
|
-
//# sourceMappingURL=image-
|
|
13
|
+
//# sourceMappingURL=image-XM2PNARE.js.map
|
package/dist/dev/index.css
CHANGED
|
@@ -646,6 +646,16 @@
|
|
|
646
646
|
border-radius: var(--radius);
|
|
647
647
|
filter: var(--theme-filter);
|
|
648
648
|
}
|
|
649
|
+
.excalidraw .color-picker__button .color-picker__button-outline {
|
|
650
|
+
display: flex;
|
|
651
|
+
align-items: center;
|
|
652
|
+
justify-content: center;
|
|
653
|
+
}
|
|
654
|
+
.excalidraw .color-picker__button .color-picker__button-outline svg {
|
|
655
|
+
color: var(--color-gray-60);
|
|
656
|
+
width: 1.25rem;
|
|
657
|
+
height: 1.25rem;
|
|
658
|
+
}
|
|
649
659
|
.excalidraw .color-picker__button.active .color-picker__button-outline {
|
|
650
660
|
position: absolute;
|
|
651
661
|
--offset: -1px;
|
|
@@ -1700,6 +1710,8 @@
|
|
|
1700
1710
|
border-radius: var(--border-radius-lg);
|
|
1701
1711
|
position: relative;
|
|
1702
1712
|
transition: box-shadow 0.5s ease-in-out;
|
|
1713
|
+
display: flex;
|
|
1714
|
+
flex-direction: column;
|
|
1703
1715
|
}
|
|
1704
1716
|
.excalidraw .dropdown-menu--mobile .dropdown-menu-container.zen-mode {
|
|
1705
1717
|
box-shadow: none;
|
|
@@ -1761,6 +1773,7 @@
|
|
|
1761
1773
|
align-items: center;
|
|
1762
1774
|
cursor: pointer;
|
|
1763
1775
|
border-radius: var(--border-radius-md);
|
|
1776
|
+
flex: 1 0 auto;
|
|
1764
1777
|
}
|
|
1765
1778
|
@media screen and (min-width: 1921px) {
|
|
1766
1779
|
.excalidraw .dropdown-menu .dropdown-menu-item {
|
|
@@ -2949,6 +2962,7 @@
|
|
|
2949
2962
|
display: flex;
|
|
2950
2963
|
align-items: center;
|
|
2951
2964
|
gap: 0.25rem;
|
|
2965
|
+
overflow: hidden;
|
|
2952
2966
|
}
|
|
2953
2967
|
.excalidraw .command-palette-dialog .commands .item-selected {
|
|
2954
2968
|
background-color: var(--color-surface-mid);
|
|
@@ -4111,18 +4125,44 @@
|
|
|
4111
4125
|
flex: 1 1 0;
|
|
4112
4126
|
display: flex;
|
|
4113
4127
|
flex-direction: column;
|
|
4128
|
+
padding: 0 0.75rem;
|
|
4114
4129
|
gap: 0.125rem;
|
|
4115
4130
|
}
|
|
4131
|
+
.excalidraw .layer-ui__search .collapsible-items {
|
|
4132
|
+
gap: 2px;
|
|
4133
|
+
}
|
|
4134
|
+
.excalidraw .layer-ui__search-result-title {
|
|
4135
|
+
font-size: 0.875rem;
|
|
4136
|
+
margin-bottom: 0.25rem;
|
|
4137
|
+
display: flex;
|
|
4138
|
+
align-items: center;
|
|
4139
|
+
gap: 0.25rem;
|
|
4140
|
+
font-weight: 700;
|
|
4141
|
+
}
|
|
4142
|
+
.excalidraw .layer-ui__search-result-title .title-icon {
|
|
4143
|
+
width: 0.875rem;
|
|
4144
|
+
height: 0.875rem;
|
|
4145
|
+
margin-right: 0.25rem;
|
|
4146
|
+
}
|
|
4147
|
+
.excalidraw .layer-ui__search-result-title .title-icon svg g {
|
|
4148
|
+
stroke-width: 1.25;
|
|
4149
|
+
}
|
|
4150
|
+
.excalidraw .layer-ui__divider {
|
|
4151
|
+
width: 100%;
|
|
4152
|
+
margin-top: 0.25rem;
|
|
4153
|
+
margin-bottom: 1rem;
|
|
4154
|
+
position: relative;
|
|
4155
|
+
}
|
|
4116
4156
|
.excalidraw .layer-ui__result-item {
|
|
4117
4157
|
display: flex;
|
|
4118
4158
|
align-items: center;
|
|
4119
|
-
min-height:
|
|
4159
|
+
min-height: 1.875rem;
|
|
4120
4160
|
flex: 0 0 auto;
|
|
4121
4161
|
padding: 0.25rem 0.75rem;
|
|
4122
4162
|
cursor: pointer;
|
|
4123
4163
|
border: 1px solid transparent;
|
|
4124
4164
|
outline: none;
|
|
4125
|
-
|
|
4165
|
+
font-size: 16px;
|
|
4126
4166
|
border-radius: var(--border-radius-md);
|
|
4127
4167
|
}
|
|
4128
4168
|
.excalidraw .layer-ui__result-item .text-icon {
|
|
@@ -5286,6 +5326,37 @@
|
|
|
5286
5326
|
}
|
|
5287
5327
|
}
|
|
5288
5328
|
|
|
5329
|
+
/* components/UnlockPopup.scss */
|
|
5330
|
+
.excalidraw .UnlockPopup {
|
|
5331
|
+
position: absolute;
|
|
5332
|
+
z-index: var(--zIndex-interactiveCanvas);
|
|
5333
|
+
display: flex;
|
|
5334
|
+
justify-content: center;
|
|
5335
|
+
align-items: center;
|
|
5336
|
+
gap: 0.5rem;
|
|
5337
|
+
border-radius: 0.5rem;
|
|
5338
|
+
background: var(--island-bg-color);
|
|
5339
|
+
box-shadow: var(--shadow-island);
|
|
5340
|
+
padding: 0.8rem;
|
|
5341
|
+
cursor: pointer;
|
|
5342
|
+
color: var(--color-gray-60);
|
|
5343
|
+
}
|
|
5344
|
+
.excalidraw .UnlockPopup:focus {
|
|
5345
|
+
outline: none;
|
|
5346
|
+
}
|
|
5347
|
+
.excalidraw .UnlockPopup svg {
|
|
5348
|
+
display: block;
|
|
5349
|
+
width: 1.25rem;
|
|
5350
|
+
height: 1.25rem;
|
|
5351
|
+
color: var(--color-gray-60);
|
|
5352
|
+
}
|
|
5353
|
+
.excalidraw .UnlockPopup:hover svg {
|
|
5354
|
+
color: var(--color-primary);
|
|
5355
|
+
}
|
|
5356
|
+
.excalidraw .UnlockPopup:active svg {
|
|
5357
|
+
transform: scale(0.95);
|
|
5358
|
+
}
|
|
5359
|
+
|
|
5289
5360
|
/* components/footer/FooterCenter.scss */
|
|
5290
5361
|
.footer-center {
|
|
5291
5362
|
pointer-events: none;
|
|
@@ -5985,14 +6056,14 @@ body.excalidraw-cursor-resize * {
|
|
|
5985
6056
|
display: flex;
|
|
5986
6057
|
justify-content: space-between;
|
|
5987
6058
|
}
|
|
5988
|
-
.excalidraw .
|
|
6059
|
+
.excalidraw .selected-shape-actions {
|
|
5989
6060
|
display: flex;
|
|
5990
6061
|
flex-direction: column;
|
|
5991
6062
|
row-gap: 0.75rem;
|
|
5992
6063
|
}
|
|
5993
|
-
.excalidraw .
|
|
5994
|
-
.excalidraw .
|
|
5995
|
-
.excalidraw .
|
|
6064
|
+
.excalidraw .selected-shape-actions h3,
|
|
6065
|
+
.excalidraw .selected-shape-actions legend,
|
|
6066
|
+
.excalidraw .selected-shape-actions .control-label {
|
|
5996
6067
|
margin: 0;
|
|
5997
6068
|
margin-bottom: 0.25rem;
|
|
5998
6069
|
font-size: 0.75rem;
|
|
@@ -6000,36 +6071,36 @@ body.excalidraw-cursor-resize * {
|
|
|
6000
6071
|
font-weight: 400;
|
|
6001
6072
|
display: block;
|
|
6002
6073
|
}
|
|
6003
|
-
.excalidraw .
|
|
6074
|
+
.excalidraw .selected-shape-actions .control-label input {
|
|
6004
6075
|
display: block;
|
|
6005
6076
|
width: 100%;
|
|
6006
6077
|
}
|
|
6007
|
-
.excalidraw .
|
|
6078
|
+
.excalidraw .selected-shape-actions legend {
|
|
6008
6079
|
padding: 0;
|
|
6009
6080
|
}
|
|
6010
|
-
.excalidraw .
|
|
6081
|
+
.excalidraw .selected-shape-actions .iconSelectList {
|
|
6011
6082
|
flex-wrap: wrap;
|
|
6012
6083
|
position: relative;
|
|
6013
6084
|
}
|
|
6014
|
-
.excalidraw .
|
|
6085
|
+
.excalidraw .selected-shape-actions .buttonList {
|
|
6015
6086
|
flex-wrap: wrap;
|
|
6016
6087
|
display: flex;
|
|
6017
6088
|
column-gap: 0.5rem;
|
|
6018
6089
|
row-gap: 0.5rem;
|
|
6019
6090
|
}
|
|
6020
|
-
.excalidraw .
|
|
6091
|
+
.excalidraw .selected-shape-actions .buttonList label {
|
|
6021
6092
|
font-size: 0.75rem;
|
|
6022
6093
|
}
|
|
6023
|
-
.excalidraw .
|
|
6024
|
-
.excalidraw .
|
|
6094
|
+
.excalidraw .selected-shape-actions .buttonList input[type=radio],
|
|
6095
|
+
.excalidraw .selected-shape-actions .buttonList input[type=button] {
|
|
6025
6096
|
opacity: 0;
|
|
6026
6097
|
position: absolute;
|
|
6027
6098
|
pointer-events: none;
|
|
6028
6099
|
}
|
|
6029
|
-
.excalidraw .
|
|
6100
|
+
.excalidraw .selected-shape-actions .buttonList .iconRow {
|
|
6030
6101
|
margin-top: 8px;
|
|
6031
6102
|
}
|
|
6032
|
-
.excalidraw .
|
|
6103
|
+
.excalidraw .selected-shape-actions fieldset {
|
|
6033
6104
|
margin: 0;
|
|
6034
6105
|
padding: 0;
|
|
6035
6106
|
border: none;
|
|
@@ -6128,10 +6199,6 @@ body.excalidraw-cursor-resize * {
|
|
|
6128
6199
|
left: 0;
|
|
6129
6200
|
right: 0;
|
|
6130
6201
|
--bar-padding: calc(4 * var(--space-factor));
|
|
6131
|
-
padding-top: max(var(--bar-padding), var(--sat,0));
|
|
6132
|
-
padding-right: var(--sar, 0);
|
|
6133
|
-
padding-bottom: var(--sab, 0);
|
|
6134
|
-
padding-left: var(--sal, 0);
|
|
6135
6202
|
z-index: 4;
|
|
6136
6203
|
display: flex;
|
|
6137
6204
|
align-items: flex-end;
|
|
@@ -6147,9 +6214,6 @@ body.excalidraw-cursor-resize * {
|
|
|
6147
6214
|
flex-direction: column;
|
|
6148
6215
|
pointer-events: var(--ui-pointerEvents);
|
|
6149
6216
|
}
|
|
6150
|
-
.excalidraw .App-bottom-bar > .Island .panelColumn {
|
|
6151
|
-
padding: 8px 8px 0 8px;
|
|
6152
|
-
}
|
|
6153
6217
|
.excalidraw .App-toolbar {
|
|
6154
6218
|
width: 100%;
|
|
6155
6219
|
}
|
|
@@ -6177,6 +6241,9 @@ body.excalidraw-cursor-resize * {
|
|
|
6177
6241
|
box-sizing: border-box;
|
|
6178
6242
|
margin-bottom: var(--bar-padding);
|
|
6179
6243
|
}
|
|
6244
|
+
.excalidraw .App-mobile-menu .selected-shape-actions {
|
|
6245
|
+
padding: 8px 8px 0 8px;
|
|
6246
|
+
}
|
|
6180
6247
|
.excalidraw .App-menu {
|
|
6181
6248
|
display: grid;
|
|
6182
6249
|
color: var(--icon-fill-color);
|