@midscene/visualizer 0.6.2 → 0.6.3-beta-20241017035917.0
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/es/component/blackboard.js +36 -16
- package/dist/es/component/player.css +3 -1
- package/dist/es/component/player.js +4 -2
- package/dist/es/component/replay-scripts.js +12 -2
- package/dist/es/component/store.js +8 -6
- package/dist/index.css +3 -1
- package/dist/index.js +1 -1
- package/dist/lib/component/blackboard.js +36 -16
- package/dist/lib/component/player.css +3 -1
- package/dist/lib/component/player.js +4 -2
- package/dist/lib/component/replay-scripts.js +12 -2
- package/dist/lib/component/store.js +8 -6
- package/dist/report/demo-mobile.html +4 -2
- package/dist/report/demo.html +8 -4
- package/dist/report/empty-error.html +4 -2
- package/dist/report/index.css +3 -1
- package/dist/report/index.html +4 -2
- package/dist/report/index.js +1 -1
- package/dist/report/multi.html +4 -2
- package/dist/types/component/store.d.ts +2 -2
- package/package.json +2 -2
package/dist/report/index.css
CHANGED
|
@@ -282,7 +282,7 @@ footer.mt-8 {
|
|
|
282
282
|
width: fit-content;
|
|
283
283
|
max-width: 100%;
|
|
284
284
|
max-height: 100%;
|
|
285
|
-
padding: 12px;
|
|
285
|
+
padding: 12px 0;
|
|
286
286
|
padding-bottom: 0;
|
|
287
287
|
background: #434443DD;
|
|
288
288
|
box-sizing: border-box;
|
|
@@ -300,6 +300,7 @@ footer.mt-8 {
|
|
|
300
300
|
align-items: center;
|
|
301
301
|
justify-content: center;
|
|
302
302
|
overflow: hidden;
|
|
303
|
+
padding: 0 12px;
|
|
303
304
|
}
|
|
304
305
|
.player-container .canvas-container canvas {
|
|
305
306
|
max-width: 100%;
|
|
@@ -334,6 +335,7 @@ footer.mt-8 {
|
|
|
334
335
|
display: flex;
|
|
335
336
|
flex-direction: row;
|
|
336
337
|
flex-shrink: 0;
|
|
338
|
+
padding: 0 12px;
|
|
337
339
|
}
|
|
338
340
|
.player-container .player-controls .status-icon {
|
|
339
341
|
transition: 0.2s;
|