@excalidraw/excalidraw 0.18.0-6fc8502 → 0.18.0-864353b
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-X3RYHLJU.js → chunk-7YMZV3TY.js} +14 -4
- package/dist/dev/chunk-7YMZV3TY.js.map +7 -0
- package/dist/dev/chunk-BBNNHA7I.js +7 -0
- package/dist/dev/chunk-BBNNHA7I.js.map +7 -0
- package/dist/dev/{chunk-KYBDXI6F.js → chunk-LL55DS44.js} +15037 -10099
- package/dist/dev/chunk-LL55DS44.js.map +7 -0
- package/dist/dev/data/{image-NKFINVKH.js → image-OFYK7EOY.js} +3 -3
- package/dist/dev/index.css +100 -22
- package/dist/dev/index.css.map +3 -3
- package/dist/dev/index.js +3531 -6486
- package/dist/dev/index.js.map +4 -4
- package/dist/dev/locales/{en-CKWC2GMK.js → en-KIY5SGI3.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-F44EGBV2.js +33 -0
- package/dist/prod/{chunk-IUH5AXLB.js → chunk-OUULIERA.js} +4 -4
- package/dist/prod/chunk-UH6Q3EIV.js +7 -0
- package/dist/prod/data/image-CUOH64HE.js +1 -0
- package/dist/prod/index.css +1 -1
- package/dist/prod/index.js +18 -17
- package/dist/prod/locales/{en-SBO6ZHT2.js → en-GCLCIHXH.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 +11 -1
- 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 +22 -4
- package/dist/types/{excalidraw/scene → element/src}/Scene.d.ts +11 -14
- package/dist/types/element/src/ShapeCache.d.ts +1 -1
- package/dist/types/element/src/align.d.ts +3 -3
- package/dist/types/element/src/binding.d.ts +19 -12
- package/dist/types/element/src/bounds.d.ts +2 -2
- package/dist/types/element/src/collision.d.ts +1 -1
- package/dist/types/{excalidraw/change.d.ts → element/src/delta.d.ts} +40 -35
- package/dist/types/element/src/dragElements.d.ts +3 -2
- package/dist/types/element/src/duplicate.d.ts +10 -13
- package/dist/types/element/src/elbowArrow.d.ts +1 -1
- package/dist/types/element/src/flowchart.d.ts +3 -2
- package/dist/types/element/src/fractionalIndex.d.ts +2 -2
- package/dist/types/element/src/frame.d.ts +5 -4
- package/dist/types/element/src/index.d.ts +45 -2
- package/dist/types/element/src/linearElementEditor.d.ts +20 -31
- package/dist/types/element/src/mutateElement.d.ts +10 -2
- package/dist/types/element/src/newElement.d.ts +4 -3
- package/dist/types/element/src/resizeElements.d.ts +4 -4
- package/dist/types/element/src/selection.d.ts +11 -5
- package/dist/types/element/src/shapes.d.ts +5 -1
- package/dist/types/element/src/sizeHelpers.d.ts +2 -2
- package/dist/types/element/src/store.d.ts +227 -0
- package/dist/types/element/src/textElement.d.ts +5 -3
- package/dist/types/element/src/transformHandles.d.ts +4 -4
- package/dist/types/element/src/typeChecks.d.ts +15 -1
- package/dist/types/element/src/types.d.ts +14 -1
- package/dist/types/element/src/zindex.d.ts +1 -1
- package/dist/types/excalidraw/actions/actionAddToLibrary.d.ts +39 -45
- package/dist/types/excalidraw/actions/actionAlign.d.ts +8 -8
- package/dist/types/excalidraw/actions/actionBoundText.d.ts +26 -30
- package/dist/types/excalidraw/actions/actionCanvas.d.ts +262 -288
- package/dist/types/excalidraw/actions/actionClipboard.d.ts +81 -92
- package/dist/types/excalidraw/actions/actionCropEditor.d.ts +13 -15
- package/dist/types/excalidraw/actions/actionDeleteSelected.d.ts +38 -43
- package/dist/types/excalidraw/actions/actionDistribute.d.ts +4 -4
- package/dist/types/excalidraw/actions/actionDuplicateSelection.d.ts +2 -2
- package/dist/types/excalidraw/actions/actionElementLink.d.ts +13 -15
- package/dist/types/excalidraw/actions/actionElementLock.d.ts +41 -46
- package/dist/types/excalidraw/actions/actionEmbeddable.d.ts +13 -15
- package/dist/types/excalidraw/actions/actionExport.d.ts +210 -228
- package/dist/types/excalidraw/actions/actionFinalize.d.ts +72 -36
- package/dist/types/excalidraw/actions/actionFlip.d.ts +4 -4
- package/dist/types/excalidraw/actions/actionFrame.d.ts +96 -104
- package/dist/types/excalidraw/actions/actionGroup.d.ts +32 -36
- package/dist/types/excalidraw/actions/actionHistory.d.ts +1 -2
- package/dist/types/excalidraw/actions/actionLinearEditor.d.ts +505 -14
- package/dist/types/excalidraw/actions/actionLink.d.ts +13 -15
- package/dist/types/excalidraw/actions/actionMenu.d.ts +39 -45
- package/dist/types/excalidraw/actions/actionNavigate.d.ts +25 -29
- package/dist/types/excalidraw/actions/actionProperties.d.ts +192 -214
- package/dist/types/excalidraw/actions/actionSelectAll.d.ts +15 -17
- package/dist/types/excalidraw/actions/actionStyles.d.ts +17 -19
- package/dist/types/excalidraw/actions/actionToggleGridMode.d.ts +15 -17
- package/dist/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +15 -17
- package/dist/types/excalidraw/actions/actionToggleSearchMenu.d.ts +15 -190
- package/dist/types/excalidraw/actions/actionToggleShapeSwitch.d.ts +19 -0
- package/dist/types/excalidraw/actions/actionToggleStats.d.ts +15 -17
- package/dist/types/excalidraw/actions/actionToggleViewMode.d.ts +15 -17
- package/dist/types/excalidraw/actions/actionToggleZenMode.d.ts +15 -17
- package/dist/types/excalidraw/actions/actionZindex.d.ts +8 -8
- package/dist/types/excalidraw/actions/types.d.ts +4 -3
- package/dist/types/excalidraw/appState.d.ts +38 -29
- package/dist/types/excalidraw/components/App.d.ts +24 -11
- 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 +23 -0
- package/dist/types/excalidraw/components/ElementLinkDialog.d.ts +4 -3
- 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 +1 -1
- 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 +4 -11
- package/dist/types/excalidraw/components/UnlockPopup.d.ts +8 -0
- package/dist/types/excalidraw/components/canvases/InteractiveCanvas.d.ts +1 -0
- package/dist/types/excalidraw/components/hyperlink/Hyperlink.d.ts +3 -2
- 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/blob.d.ts +1 -1
- package/dist/types/excalidraw/data/transform.d.ts +1 -1
- package/dist/types/excalidraw/editor-jotai.d.ts +6 -6
- package/dist/types/excalidraw/eraser/index.d.ts +14 -0
- package/dist/types/excalidraw/fonts/Fonts.d.ts +1 -1
- package/dist/types/excalidraw/history.d.ts +14 -22
- package/dist/types/excalidraw/hooks/useEmitter.d.ts +1 -1
- package/dist/types/excalidraw/index.d.ts +9 -9
- package/dist/types/excalidraw/lasso/index.d.ts +1 -0
- package/dist/types/excalidraw/lasso/utils.d.ts +1 -2
- package/dist/types/excalidraw/renderer/helpers.d.ts +7 -2
- package/dist/types/excalidraw/scene/Renderer.d.ts +1 -1
- package/dist/types/excalidraw/scene/index.d.ts +2 -2
- package/dist/types/excalidraw/scene/scrollbars.d.ts +2 -3
- package/dist/types/excalidraw/scene/types.d.ts +2 -0
- package/dist/types/excalidraw/snapping.d.ts +2 -2
- package/dist/types/excalidraw/types.d.ts +28 -6
- package/dist/types/excalidraw/visualdebug.d.ts +1 -1
- package/dist/types/excalidraw/wysiwyg/textWysiwyg.d.ts +3 -1
- package/dist/types/math/src/angle.d.ts +2 -0
- package/dist/types/math/src/curve.d.ts +2 -0
- package/dist/types/math/src/point.d.ts +1 -1
- package/dist/types/math/src/types.d.ts +1 -0
- package/dist/types/math/src/vector.d.ts +4 -0
- 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 +68 -94
- package/package.json +3 -3
- package/dist/dev/chunk-H7XJ5UVD.js +0 -7
- package/dist/dev/chunk-H7XJ5UVD.js.map +0 -7
- package/dist/dev/chunk-KYBDXI6F.js.map +0 -7
- package/dist/dev/chunk-X3RYHLJU.js.map +0 -7
- package/dist/prod/chunk-CAN5RS4P.js +0 -31
- package/dist/prod/chunk-KJYFYP64.js +0 -7
- package/dist/prod/data/image-5XD47O4X.js +0 -1
- package/dist/types/excalidraw/components/ButtonSelect.d.ts +0 -9
- package/dist/types/excalidraw/store.d.ts +0 -129
- /package/dist/dev/data/{image-NKFINVKH.js.map → image-OFYK7EOY.js.map} +0 -0
- /package/dist/dev/locales/{en-CKWC2GMK.js.map → en-KIY5SGI3.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-LL55DS44.js";
|
|
6
|
+
import "../chunk-BBNNHA7I.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-OFYK7EOY.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;
|
|
@@ -1454,6 +1464,21 @@
|
|
|
1454
1464
|
flex: 0 0 auto;
|
|
1455
1465
|
}
|
|
1456
1466
|
|
|
1467
|
+
/* components/ConvertElementTypePopup.scss */
|
|
1468
|
+
.excalidraw .ConvertElementTypePopup {
|
|
1469
|
+
display: flex;
|
|
1470
|
+
flex-wrap: wrap;
|
|
1471
|
+
justify-content: center;
|
|
1472
|
+
gap: 0.2rem;
|
|
1473
|
+
border-radius: 0.5rem;
|
|
1474
|
+
background: var(--island-bg-color);
|
|
1475
|
+
box-shadow: var(--shadow-island);
|
|
1476
|
+
padding: 0.5rem;
|
|
1477
|
+
}
|
|
1478
|
+
.excalidraw .ConvertElementTypePopup:focus {
|
|
1479
|
+
outline: none;
|
|
1480
|
+
}
|
|
1481
|
+
|
|
1457
1482
|
/* components/DialogActionButton.scss */
|
|
1458
1483
|
.excalidraw .Dialog__action-button {
|
|
1459
1484
|
position: relative;
|
|
@@ -4096,18 +4121,44 @@
|
|
|
4096
4121
|
flex: 1 1 0;
|
|
4097
4122
|
display: flex;
|
|
4098
4123
|
flex-direction: column;
|
|
4124
|
+
padding: 0 0.75rem;
|
|
4099
4125
|
gap: 0.125rem;
|
|
4100
4126
|
}
|
|
4127
|
+
.excalidraw .layer-ui__search .collapsible-items {
|
|
4128
|
+
gap: 2px;
|
|
4129
|
+
}
|
|
4130
|
+
.excalidraw .layer-ui__search-result-title {
|
|
4131
|
+
font-size: 0.875rem;
|
|
4132
|
+
margin-bottom: 0.25rem;
|
|
4133
|
+
display: flex;
|
|
4134
|
+
align-items: center;
|
|
4135
|
+
gap: 0.25rem;
|
|
4136
|
+
font-weight: 700;
|
|
4137
|
+
}
|
|
4138
|
+
.excalidraw .layer-ui__search-result-title .title-icon {
|
|
4139
|
+
width: 0.875rem;
|
|
4140
|
+
height: 0.875rem;
|
|
4141
|
+
margin-right: 0.25rem;
|
|
4142
|
+
}
|
|
4143
|
+
.excalidraw .layer-ui__search-result-title .title-icon svg g {
|
|
4144
|
+
stroke-width: 1.25;
|
|
4145
|
+
}
|
|
4146
|
+
.excalidraw .layer-ui__divider {
|
|
4147
|
+
width: 100%;
|
|
4148
|
+
margin-top: 0.25rem;
|
|
4149
|
+
margin-bottom: 1rem;
|
|
4150
|
+
position: relative;
|
|
4151
|
+
}
|
|
4101
4152
|
.excalidraw .layer-ui__result-item {
|
|
4102
4153
|
display: flex;
|
|
4103
4154
|
align-items: center;
|
|
4104
|
-
min-height:
|
|
4155
|
+
min-height: 1.875rem;
|
|
4105
4156
|
flex: 0 0 auto;
|
|
4106
4157
|
padding: 0.25rem 0.75rem;
|
|
4107
4158
|
cursor: pointer;
|
|
4108
4159
|
border: 1px solid transparent;
|
|
4109
4160
|
outline: none;
|
|
4110
|
-
|
|
4161
|
+
font-size: 16px;
|
|
4111
4162
|
border-radius: var(--border-radius-md);
|
|
4112
4163
|
}
|
|
4113
4164
|
.excalidraw .layer-ui__result-item .text-icon {
|
|
@@ -5271,6 +5322,37 @@
|
|
|
5271
5322
|
}
|
|
5272
5323
|
}
|
|
5273
5324
|
|
|
5325
|
+
/* components/UnlockPopup.scss */
|
|
5326
|
+
.excalidraw .UnlockPopup {
|
|
5327
|
+
position: absolute;
|
|
5328
|
+
z-index: var(--zIndex-interactiveCanvas);
|
|
5329
|
+
display: flex;
|
|
5330
|
+
justify-content: center;
|
|
5331
|
+
align-items: center;
|
|
5332
|
+
gap: 0.5rem;
|
|
5333
|
+
border-radius: 0.5rem;
|
|
5334
|
+
background: var(--island-bg-color);
|
|
5335
|
+
box-shadow: var(--shadow-island);
|
|
5336
|
+
padding: 0.8rem;
|
|
5337
|
+
cursor: pointer;
|
|
5338
|
+
color: var(--color-gray-60);
|
|
5339
|
+
}
|
|
5340
|
+
.excalidraw .UnlockPopup:focus {
|
|
5341
|
+
outline: none;
|
|
5342
|
+
}
|
|
5343
|
+
.excalidraw .UnlockPopup svg {
|
|
5344
|
+
display: block;
|
|
5345
|
+
width: 1.25rem;
|
|
5346
|
+
height: 1.25rem;
|
|
5347
|
+
color: var(--color-gray-60);
|
|
5348
|
+
}
|
|
5349
|
+
.excalidraw .UnlockPopup:hover svg {
|
|
5350
|
+
color: var(--color-primary);
|
|
5351
|
+
}
|
|
5352
|
+
.excalidraw .UnlockPopup:active svg {
|
|
5353
|
+
transform: scale(0.95);
|
|
5354
|
+
}
|
|
5355
|
+
|
|
5274
5356
|
/* components/footer/FooterCenter.scss */
|
|
5275
5357
|
.footer-center {
|
|
5276
5358
|
pointer-events: none;
|
|
@@ -5970,14 +6052,14 @@ body.excalidraw-cursor-resize * {
|
|
|
5970
6052
|
display: flex;
|
|
5971
6053
|
justify-content: space-between;
|
|
5972
6054
|
}
|
|
5973
|
-
.excalidraw .
|
|
6055
|
+
.excalidraw .selected-shape-actions {
|
|
5974
6056
|
display: flex;
|
|
5975
6057
|
flex-direction: column;
|
|
5976
6058
|
row-gap: 0.75rem;
|
|
5977
6059
|
}
|
|
5978
|
-
.excalidraw .
|
|
5979
|
-
.excalidraw .
|
|
5980
|
-
.excalidraw .
|
|
6060
|
+
.excalidraw .selected-shape-actions h3,
|
|
6061
|
+
.excalidraw .selected-shape-actions legend,
|
|
6062
|
+
.excalidraw .selected-shape-actions .control-label {
|
|
5981
6063
|
margin: 0;
|
|
5982
6064
|
margin-bottom: 0.25rem;
|
|
5983
6065
|
font-size: 0.75rem;
|
|
@@ -5985,36 +6067,36 @@ body.excalidraw-cursor-resize * {
|
|
|
5985
6067
|
font-weight: 400;
|
|
5986
6068
|
display: block;
|
|
5987
6069
|
}
|
|
5988
|
-
.excalidraw .
|
|
6070
|
+
.excalidraw .selected-shape-actions .control-label input {
|
|
5989
6071
|
display: block;
|
|
5990
6072
|
width: 100%;
|
|
5991
6073
|
}
|
|
5992
|
-
.excalidraw .
|
|
6074
|
+
.excalidraw .selected-shape-actions legend {
|
|
5993
6075
|
padding: 0;
|
|
5994
6076
|
}
|
|
5995
|
-
.excalidraw .
|
|
6077
|
+
.excalidraw .selected-shape-actions .iconSelectList {
|
|
5996
6078
|
flex-wrap: wrap;
|
|
5997
6079
|
position: relative;
|
|
5998
6080
|
}
|
|
5999
|
-
.excalidraw .
|
|
6081
|
+
.excalidraw .selected-shape-actions .buttonList {
|
|
6000
6082
|
flex-wrap: wrap;
|
|
6001
6083
|
display: flex;
|
|
6002
6084
|
column-gap: 0.5rem;
|
|
6003
6085
|
row-gap: 0.5rem;
|
|
6004
6086
|
}
|
|
6005
|
-
.excalidraw .
|
|
6087
|
+
.excalidraw .selected-shape-actions .buttonList label {
|
|
6006
6088
|
font-size: 0.75rem;
|
|
6007
6089
|
}
|
|
6008
|
-
.excalidraw .
|
|
6009
|
-
.excalidraw .
|
|
6090
|
+
.excalidraw .selected-shape-actions .buttonList input[type=radio],
|
|
6091
|
+
.excalidraw .selected-shape-actions .buttonList input[type=button] {
|
|
6010
6092
|
opacity: 0;
|
|
6011
6093
|
position: absolute;
|
|
6012
6094
|
pointer-events: none;
|
|
6013
6095
|
}
|
|
6014
|
-
.excalidraw .
|
|
6096
|
+
.excalidraw .selected-shape-actions .buttonList .iconRow {
|
|
6015
6097
|
margin-top: 8px;
|
|
6016
6098
|
}
|
|
6017
|
-
.excalidraw .
|
|
6099
|
+
.excalidraw .selected-shape-actions fieldset {
|
|
6018
6100
|
margin: 0;
|
|
6019
6101
|
padding: 0;
|
|
6020
6102
|
border: none;
|
|
@@ -6113,10 +6195,6 @@ body.excalidraw-cursor-resize * {
|
|
|
6113
6195
|
left: 0;
|
|
6114
6196
|
right: 0;
|
|
6115
6197
|
--bar-padding: calc(4 * var(--space-factor));
|
|
6116
|
-
padding-top: max(var(--bar-padding), var(--sat,0));
|
|
6117
|
-
padding-right: var(--sar, 0);
|
|
6118
|
-
padding-bottom: var(--sab, 0);
|
|
6119
|
-
padding-left: var(--sal, 0);
|
|
6120
6198
|
z-index: 4;
|
|
6121
6199
|
display: flex;
|
|
6122
6200
|
align-items: flex-end;
|
|
@@ -6132,9 +6210,6 @@ body.excalidraw-cursor-resize * {
|
|
|
6132
6210
|
flex-direction: column;
|
|
6133
6211
|
pointer-events: var(--ui-pointerEvents);
|
|
6134
6212
|
}
|
|
6135
|
-
.excalidraw .App-bottom-bar > .Island .panelColumn {
|
|
6136
|
-
padding: 8px 8px 0 8px;
|
|
6137
|
-
}
|
|
6138
6213
|
.excalidraw .App-toolbar {
|
|
6139
6214
|
width: 100%;
|
|
6140
6215
|
}
|
|
@@ -6162,6 +6237,9 @@ body.excalidraw-cursor-resize * {
|
|
|
6162
6237
|
box-sizing: border-box;
|
|
6163
6238
|
margin-bottom: var(--bar-padding);
|
|
6164
6239
|
}
|
|
6240
|
+
.excalidraw .App-mobile-menu .selected-shape-actions {
|
|
6241
|
+
padding: 8px 8px 0 8px;
|
|
6242
|
+
}
|
|
6165
6243
|
.excalidraw .App-menu {
|
|
6166
6244
|
display: grid;
|
|
6167
6245
|
color: var(--icon-fill-color);
|