@bycrux/editor 0.4.6 → 0.4.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bycrux/editor",
3
- "version": "0.4.6",
3
+ "version": "0.4.7",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "exports": {
@@ -342,11 +342,12 @@ export default function SlideCanvas({
342
342
  data-testid="snap-guide-x"
343
343
  style={{
344
344
  position: 'absolute',
345
- left: g.at * scale - 0.5,
345
+ left: g.at * scale - 1,
346
346
  top: 0,
347
- width: 1,
347
+ width: 2,
348
348
  height: displayH,
349
- background: '#ec4899',
349
+ background: '#ff2d88',
350
+ boxShadow: '0 0 6px 1px rgba(255,45,136,0.9)',
350
351
  pointerEvents: 'none',
351
352
  zIndex: 999,
352
353
  }}
@@ -358,10 +359,11 @@ export default function SlideCanvas({
358
359
  style={{
359
360
  position: 'absolute',
360
361
  left: 0,
361
- top: g.at * scale - 0.5,
362
+ top: g.at * scale - 1,
362
363
  width: displayW,
363
- height: 1,
364
- background: '#ec4899',
364
+ height: 2,
365
+ background: '#ff2d88',
366
+ boxShadow: '0 0 6px 1px rgba(255,45,136,0.9)',
365
367
  pointerEvents: 'none',
366
368
  zIndex: 999,
367
369
  }}