@reacteditor/core 0.0.14 → 0.0.15

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.
@@ -2342,211 +2342,100 @@ body:has(._DropZone--isAnimating_1h108_70:empty) [data-editor-overlay] {
2342
2342
  }
2343
2343
 
2344
2344
  /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/Editor/components/Layout/styles.module.css/#css-module-data */
2345
- ._Editor_frglt_19 {
2345
+ ._Editor_1d9v5_8 {
2346
2346
  --editor-space-px: 16px;
2347
2347
  color: var(--editor-text-primary);
2348
2348
  font-family: var(--editor-font-family);
2349
2349
  overflow-x: hidden;
2350
2350
  }
2351
2351
  @media (min-width: 766px) {
2352
- ._Editor_frglt_19 {
2352
+ ._Editor_1d9v5_8 {
2353
2353
  overflow-x: auto;
2354
2354
  }
2355
2355
  }
2356
- ._Editor-portal_frglt_32 {
2356
+ ._Editor-portal_1d9v5_21 {
2357
2357
  position: relative;
2358
2358
  z-index: 2;
2359
2359
  }
2360
- ._EditorLayout_frglt_37 {
2360
+ ._EditorLayout_1d9v5_26 {
2361
2361
  height: 100dvh;
2362
2362
  }
2363
- ._EditorLayout-inner_frglt_41 {
2364
- --editor-frame-width: auto;
2365
- --editor-side-nav-width: min-content;
2366
- --editor-side-bar-width: 0px;
2367
- --editor-left-side-bar-width: var( --editor-user-left-side-bar-width, var(--editor-side-bar-width) );
2368
- --editor-right-side-bar-width: var( --editor-user-right-side-bar-width, var(--editor-side-bar-width) );
2363
+ ._EditorLayout-inner_1d9v5_30 {
2364
+ --editor-header-height: 44px;
2365
+ --editor-side-bar-width: 280px;
2369
2366
  background-color: var(--editor-surface-app);
2370
2367
  display: grid;
2371
- grid-template-areas: "editor" "mobilepanel" "left" "right" "sidenav";
2372
- grid-template-columns: var(--editor-frame-width);
2373
- grid-template-rows: auto 0 0 0 var(--editor-side-nav-width);
2368
+ grid-template-areas: "header" "editor";
2369
+ grid-template-columns: 1fr;
2370
+ grid-template-rows: var(--editor-header-height) 1fr;
2374
2371
  height: 100%;
2375
2372
  position: relative;
2376
- transition: none;
2377
2373
  z-index: 0;
2378
2374
  overflow: hidden;
2379
2375
  }
2380
- @media (min-width: 638px) {
2381
- ._EditorLayout-inner_frglt_41 {
2382
- --editor-side-nav-width: 44px;
2383
- grid-template-areas: "sidenav left editor right";
2384
- grid-template-columns: var(--editor-side-nav-width) 0 var(--editor-frame-width) 0;
2385
- grid-template-rows: auto;
2386
- }
2387
- ._Editor--hidePlugins_frglt_73 ._EditorLayout-inner_frglt_41,
2388
- ._EditorLayout_frglt_37:not(._EditorLayout--navBarVisible_frglt_74) ._EditorLayout-inner_frglt_41 {
2389
- --editor-side-nav-width: 0;
2390
- }
2391
- }
2392
- ._EditorLayout_frglt_37:not(._EditorLayout--navBarVisible_frglt_74) ._EditorLayout-inner_frglt_41 {
2393
- --editor-side-nav-width: 0;
2394
- }
2395
- ._EditorLayout--mounted_frglt_83 ._EditorLayout-inner_frglt_41 {
2396
- --editor-side-bar-width: 186px;
2397
- }
2398
- ._EditorLayout--mobilePanelHeightToggle_frglt_87._EditorLayout--leftSideBarVisible_frglt_87 ._EditorLayout-inner_frglt_41 {
2399
- grid-template-rows: auto 60% 0 0 var(--editor-side-nav-width);
2400
- }
2401
- ._EditorLayout--mobilePanelCustomHeight_frglt_92._EditorLayout--leftSideBarVisible_frglt_87 ._EditorLayout-inner_frglt_41 {
2402
- grid-template-rows: auto var(--editor-mobile-panel-height, 60%) 0 0 var(--editor-side-nav-width);
2403
- }
2404
- @media (min-width: 638px) {
2405
- ._EditorLayout--mobilePanelHeightToggle_frglt_87._EditorLayout--leftSideBarVisible_frglt_87 ._EditorLayout-inner_frglt_41 {
2406
- grid-template-columns: var(--editor-side-nav-width) var(--editor-left-side-bar-width) var( --editor-frame-width ) 0;
2407
- grid-template-rows: auto;
2408
- }
2409
- }
2410
- ._EditorLayout--mobilePanelHeightMinContent_frglt_110._EditorLayout--leftSideBarVisible_frglt_87 ._EditorLayout-inner_frglt_41 {
2411
- grid-template-rows: auto min-content 0 0 var(--editor-side-nav-width);
2412
- }
2413
- @media (min-width: 638px) {
2414
- ._EditorLayout--mobilePanelHeightToggle_frglt_87._EditorLayout--leftSideBarVisible_frglt_87 ._EditorLayout-inner_frglt_41,
2415
- ._EditorLayout--mobilePanelCustomHeight_frglt_92._EditorLayout--leftSideBarVisible_frglt_87 ._EditorLayout-inner_frglt_41,
2416
- ._EditorLayout--mobilePanelHeightMinContent_frglt_110._EditorLayout--leftSideBarVisible_frglt_87 ._EditorLayout-inner_frglt_41 {
2417
- grid-template-columns: var(--editor-side-nav-width) var(--editor-left-side-bar-width) var( --editor-frame-width ) 0;
2418
- grid-template-rows: auto;
2419
- }
2420
- }
2421
- @media (min-width: 638px) {
2422
- ._EditorLayout--rightSideBarVisible_frglt_132 ._EditorLayout-inner_frglt_41 {
2423
- grid-template-columns: var(--editor-side-nav-width) 0 var(--editor-frame-width) var(--editor-right-side-bar-width);
2424
- }
2425
- }
2426
- @media (min-width: 638px) {
2427
- ._EditorLayout--leftSideBarVisible_frglt_87._EditorLayout--rightSideBarVisible_frglt_132 ._EditorLayout-inner_frglt_41 {
2428
- grid-template-columns: var(--editor-side-nav-width) var(--editor-left-side-bar-width) var( --editor-frame-width ) var(--editor-right-side-bar-width);
2429
- }
2430
- }
2431
- @media (min-width: 458px) {
2432
- ._EditorLayout-mounted_frglt_151 ._EditorLayout-inner_frglt_41 {
2433
- --editor-frame-width: minmax(266px, auto);
2434
- }
2435
- }
2436
- @media (min-width: 638px) {
2437
- ._EditorLayout_frglt_37 ._EditorLayout-inner_frglt_41 {
2438
- --editor-side-bar-width: minmax(186px, 250px);
2439
- }
2440
- }
2441
- @media (min-width: 766px) {
2442
- ._EditorLayout_frglt_37 ._EditorLayout-inner_frglt_41 {
2443
- --editor-frame-width: auto;
2444
- }
2445
- }
2446
- @media (min-width: 990px) {
2447
- ._EditorLayout_frglt_37 ._EditorLayout-inner_frglt_41 {
2448
- --editor-side-bar-width: 256px;
2449
- }
2450
- }
2451
- @media (min-width: 1198px) {
2452
- ._EditorLayout_frglt_37 ._EditorLayout-inner_frglt_41 {
2453
- --editor-side-bar-width: 274px;
2454
- }
2455
- }
2456
- @media (min-width: 1398px) {
2457
- ._EditorLayout_frglt_37 ._EditorLayout-inner_frglt_41 {
2458
- --editor-side-bar-width: 290px;
2459
- }
2460
- }
2461
- @media (min-width: 1598px) {
2462
- ._EditorLayout_frglt_37 ._EditorLayout-inner_frglt_41 {
2463
- --editor-side-bar-width: 320px;
2464
- }
2376
+ ._EditorLayout_1d9v5_26:not(._EditorLayout--navBarVisible_1d9v5_44) ._EditorLayout-inner_1d9v5_30 {
2377
+ --editor-header-height: 0px;
2378
+ grid-template-rows: 0 1fr;
2465
2379
  }
2466
- ._EditorLayout-nav_frglt_192 {
2467
- border-top: 1px solid var(--editor-border-subtle);
2380
+ ._EditorLayout-header_1d9v5_49 {
2381
+ align-items: center;
2468
2382
  background-color: var(--editor-surface-panel);
2469
- grid-area: sidenav;
2470
- overflow: hidden;
2471
- width: 100%;
2472
- }
2473
- @media (min-width: 638px) {
2474
- ._EditorLayout-nav_frglt_192 {
2475
- border-top: 0;
2476
- border-right: 1px solid var(--editor-border-subtle);
2477
- box-sizing: border-box;
2478
- }
2383
+ border-bottom: 1px solid var(--editor-border-subtle);
2384
+ box-sizing: border-box;
2385
+ display: grid;
2386
+ gap: 12px;
2387
+ grid-area: header;
2388
+ grid-template-columns: 1fr auto 1fr;
2389
+ padding: 0 12px;
2390
+ z-index: 11;
2479
2391
  }
2480
- ._Editor-fieldSideBarToolbar_frglt_208 {
2392
+ ._EditorLayout-headerStart_1d9v5_62 {
2481
2393
  align-items: center;
2482
- background: var(--editor-surface-panel);
2483
- border-bottom: 1px solid var(--editor-border-subtle);
2484
2394
  display: flex;
2485
2395
  gap: 8px;
2486
- justify-content: space-between;
2487
- padding: 8px 12px;
2396
+ justify-self: start;
2397
+ min-width: 0;
2488
2398
  }
2489
- ._Editor-fieldSideBarHistory_frglt_218 {
2490
- color: var(--editor-text-tertiary);
2399
+ ._EditorLayout-headerCenter_1d9v5_70 {
2400
+ align-items: center;
2491
2401
  display: flex;
2492
- gap: 2px;
2402
+ justify-content: center;
2403
+ justify-self: center;
2404
+ max-width: 480px;
2405
+ min-width: 0;
2406
+ width: clamp(160px, 40vw, 480px);
2493
2407
  }
2494
- ._Editor-fieldSideBarActions_frglt_224 {
2408
+ ._EditorLayout-headerEnd_1d9v5_81 {
2495
2409
  align-items: center;
2496
2410
  display: flex;
2497
2411
  gap: 8px;
2412
+ justify-self: end;
2413
+ min-width: 0;
2498
2414
  }
2499
- ._EditorLayout-mobilePanel_frglt_230 {
2500
- grid-area: mobilepanel;
2501
- background: var(--editor-surface-panel);
2502
- border-block-start: 1px solid var(--editor-border-subtle);
2503
- display: none;
2504
- flex-direction: column;
2505
- overflow: hidden;
2506
- }
2507
- ._EditorLayout--leftSideBarVisible_frglt_87 ._EditorLayout-mobilePanel_frglt_230 {
2415
+ ._EditorLayout-headerHistory_1d9v5_91 {
2416
+ align-items: center;
2508
2417
  display: flex;
2418
+ gap: 2px;
2509
2419
  }
2510
- @media (min-width: 638px) {
2511
- ._EditorLayout-mobilePanel_frglt_230,
2512
- ._EditorLayout--leftSideBarVisible_frglt_87 ._EditorLayout-mobilePanel_frglt_230 {
2420
+ @media (max-width: 637px) {
2421
+ ._EditorLayout-header_1d9v5_49 {
2422
+ grid-template-columns: 1fr auto;
2423
+ gap: 8px;
2424
+ }
2425
+ ._EditorLayout-headerCenter_1d9v5_70 {
2513
2426
  display: none;
2514
2427
  }
2515
2428
  }
2516
- ._EditorLayout-mobilePanelContent_frglt_250 {
2517
- flex: 1;
2518
- overflow-y: auto;
2519
- display: flex;
2520
- flex-direction: column;
2521
- }
2522
- ._EditorLayout-mobileDragHandle_frglt_257 {
2523
- display: flex;
2524
- align-items: center;
2525
- justify-content: center;
2526
- padding: 8px 0 4px;
2527
- cursor: grab;
2528
- touch-action: none;
2529
- flex-shrink: 0;
2530
- }
2531
- ._EditorLayout-mobileDragHandle_frglt_257:active {
2532
- cursor: grabbing;
2533
- }
2534
- ._EditorLayout-mobileDragHandlePill_frglt_271 {
2535
- width: 36px;
2536
- height: 4px;
2537
- border-radius: 2px;
2538
- background-color: var(--editor-border-subtle);
2539
- }
2540
- ._EditorPluginTab_frglt_278 {
2429
+ ._EditorPluginTab_1d9v5_110 {
2541
2430
  display: none;
2542
2431
  flex-grow: 1;
2543
2432
  max-height: 100%;
2544
2433
  }
2545
- ._EditorPluginTab--visible_frglt_284 {
2434
+ ._EditorPluginTab--visible_1d9v5_116 {
2546
2435
  display: flex;
2547
2436
  flex-direction: column;
2548
2437
  }
2549
- ._EditorPluginTab-body_frglt_289 {
2438
+ ._EditorPluginTab-body_1d9v5_121 {
2550
2439
  flex-grow: 1;
2551
2440
  max-height: 100%;
2552
2441
  }
@@ -2686,389 +2575,184 @@ body:has(._DropZone--isAnimating_1h108_70:empty) [data-editor-overlay] {
2686
2575
  flex-shrink: 0;
2687
2576
  }
2688
2577
 
2689
- /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/ui/Combobox/styles.module.css/#css-module-data */
2690
- ._EditorCombobox-input_12a2a_4 {
2691
- background: transparent;
2692
- border: 0;
2693
- color: inherit;
2694
- flex: 1;
2695
- font: inherit;
2696
- font-size: var(--editor-font-size-xxs);
2697
- min-width: 0;
2698
- outline: none;
2578
+ /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/Editor/components/Canvas/styles.module.css/#css-module-data */
2579
+ ._EditorCanvas_1h1vv_1 {
2580
+ background: var(--editor-surface-sunken);
2581
+ display: flex;
2582
+ grid-area: editor;
2583
+ flex-direction: column;
2699
2584
  padding: 0;
2700
- width: 100%;
2701
- }
2702
- ._EditorCombobox-input_12a2a_4::placeholder {
2703
- color: var(--editor-text-tertiary);
2585
+ position: relative;
2586
+ overflow: hidden;
2704
2587
  }
2705
- ._EditorCombobox-trigger_12a2a_21 {
2706
- align-items: center;
2707
- background: transparent;
2708
- border: 0;
2709
- color: var(--editor-text-tertiary);
2710
- cursor: pointer;
2711
- display: inline-flex;
2712
- flex-shrink: 0;
2713
- height: 20px;
2714
- justify-content: center;
2715
- outline: none;
2588
+ ._EditorCanvas--fullScreen_1h1vv_11 {
2716
2589
  padding: 0;
2717
- width: 20px;
2590
+ overflow: hidden;
2718
2591
  }
2719
- @media (hover: hover) and (pointer: fine) {
2720
- ._EditorCombobox-trigger_12a2a_21:hover {
2721
- color: var(--editor-text-primary);
2592
+ @media (min-width: 1198px) {
2593
+ ._EditorCanvas--fullScreen_1h1vv_11 {
2594
+ padding: 0;
2722
2595
  }
2723
2596
  }
2724
- ._EditorCombobox-triggerIcon_12a2a_42 {
2725
- pointer-events: none;
2597
+ ._EditorCanvas--canvasFullScreen_1h1vv_31 {
2598
+ position: fixed;
2599
+ inset: 0;
2600
+ z-index: 1000;
2601
+ padding: 0 !important;
2726
2602
  }
2727
- ._EditorCombobox-positioner_12a2a_46 {
2728
- z-index: 50;
2603
+ ._EditorCanvas-inner_1h1vv_38 {
2604
+ display: flex;
2605
+ flex-direction: column;
2606
+ height: 100%;
2607
+ min-width: 288px;
2608
+ position: relative;
2609
+ width: 100%;
2729
2610
  }
2730
- ._EditorCombobox-content_12a2a_50 {
2731
- background: var(--editor-surface-raised);
2732
- border: 1px solid var(--editor-border-subtle);
2733
- border-radius: var(--editor-radius-md);
2734
- box-shadow: var(--editor-shadow-md);
2735
- color: var(--editor-text-primary);
2736
- font-family: var(--editor-font-family);
2737
- font-size: var(--editor-font-size-xxs);
2738
- max-height: var(--available-height);
2739
- min-width: var(--anchor-width);
2611
+ ._EditorCanvas-bar_1h1vv_50 {
2612
+ flex-shrink: 0;
2613
+ width: 100%;
2614
+ z-index: 1;
2615
+ }
2616
+ ._EditorCanvas-zoomViewport_1h1vv_60 {
2617
+ flex: 1;
2618
+ min-height: 0;
2740
2619
  overflow: hidden;
2741
- transform-origin: var(--transform-origin);
2742
- z-index: 50;
2620
+ position: relative;
2743
2621
  }
2744
- ._EditorCombobox-list_12a2a_65 {
2745
- max-height: inherit;
2746
- overflow-y: auto;
2747
- padding: 4px;
2622
+ ._EditorCanvas-rootColumn_1h1vv_69 {
2623
+ box-sizing: content-box;
2748
2624
  }
2749
- ._EditorCombobox-item_12a2a_71 {
2750
- align-items: center;
2751
- border-radius: var(--editor-radius-sm);
2752
- cursor: pointer;
2625
+ ._EditorCanvas-frame_1h1vv_74 {
2753
2626
  display: flex;
2754
- font: inherit;
2755
- font-size: var(--editor-font-size-xxs);
2756
- gap: 8px;
2757
- outline: none;
2758
- padding: 6px 8px 6px 28px;
2759
- position: relative;
2760
- user-select: none;
2627
+ flex-direction: column;
2628
+ min-width: 288px;
2761
2629
  }
2762
- ._EditorCombobox-item_12a2a_71[data-highlighted],
2763
- ._EditorCombobox-item_12a2a_71[data-selected] {
2764
- background: var(--editor-accent-soft);
2765
- color: var(--editor-text-accent);
2630
+ @media (min-width: 1198px) {
2631
+ ._EditorCanvas-frame_1h1vv_74 {
2632
+ min-width: unset;
2633
+ }
2766
2634
  }
2767
- ._EditorCombobox-item_12a2a_71[data-disabled] {
2768
- cursor: not-allowed;
2769
- opacity: 0.5;
2635
+ ._EditorCanvas-root_1h1vv_69 {
2636
+ background: var(--editor-surface-panel);
2637
+ outline: 1px solid var(--editor-border-subtle);
2638
+ box-shadow: var(--editor-shadow-lg);
2639
+ border-radius: var(--editor-radius-md);
2640
+ flex: 1;
2770
2641
  pointer-events: none;
2642
+ opacity: 0;
2643
+ min-height: 100%;
2771
2644
  }
2772
- ._EditorCombobox-itemIndicator_12a2a_97 {
2645
+ ._EditorCanvas--ready_1h1vv_98 ._EditorCanvas-root_1h1vv_69 {
2646
+ pointer-events: unset;
2647
+ opacity: 1;
2648
+ }
2649
+ ._EditorCanvas-loader_1h1vv_103 {
2773
2650
  align-items: center;
2774
- color: var(--editor-accent-strong);
2775
- display: inline-flex;
2651
+ color: var(--editor-text-tertiary);
2652
+ display: flex;
2653
+ inset: 0;
2776
2654
  justify-content: center;
2777
- left: 8px;
2778
2655
  pointer-events: none;
2779
2656
  position: absolute;
2780
- width: 14px;
2657
+ transition: opacity 250ms ease-out;
2658
+ opacity: 0;
2781
2659
  }
2782
- ._EditorCombobox-empty_12a2a_110:not(:empty) {
2783
- color: var(--editor-text-tertiary);
2784
- font-size: var(--editor-font-size-xxs);
2785
- padding: 12px 8px;
2786
- text-align: center;
2660
+ ._EditorCanvas--showLoader_1h1vv_115 ._EditorCanvas-loader_1h1vv_103 {
2661
+ opacity: 1;
2787
2662
  }
2788
-
2789
- /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/BrowserBar/styles.module.css/#css-module-data */
2790
- ._BrowserBar_coofe_1 {
2663
+ ._EditorCanvas--showLoader_1h1vv_115._EditorCanvas--ready_1h1vv_98 ._EditorCanvas-loader_1h1vv_103 {
2664
+ opacity: 0;
2665
+ transition: none;
2666
+ }
2667
+ ._EditorCanvas-toolbar_1h1vv_128 {
2791
2668
  align-items: center;
2792
2669
  background: var(--editor-surface-panel);
2793
2670
  border: 1px solid var(--editor-border-subtle);
2794
- border-bottom: 0;
2795
- border-radius: var(--editor-radius-md) var(--editor-radius-md) 0 0;
2671
+ border-radius: var(--editor-radius-md);
2672
+ bottom: 16px;
2673
+ box-shadow: var(--editor-shadow-md);
2796
2674
  display: flex;
2797
- gap: 8px;
2798
- padding: 8px 10px;
2799
- width: 100%;
2675
+ gap: 2px;
2676
+ left: 50%;
2677
+ padding: 4px;
2678
+ position: absolute;
2679
+ transform: translateX(-50%);
2680
+ z-index: 10;
2800
2681
  }
2801
- ._BrowserBar-urlTrigger_coofe_16 {
2802
- align-items: center;
2803
- background: var(--editor-surface-sunken);
2804
- border: 1px solid var(--editor-border-subtle);
2805
- border-radius: 9999px;
2806
- color: var(--editor-text-primary);
2682
+ ._EditorCanvas-toolbarDivider_1h1vv_144 {
2683
+ background: var(--editor-border-subtle);
2684
+ flex-shrink: 0;
2685
+ height: 20px;
2686
+ margin: 0 4px;
2687
+ width: 1px;
2688
+ }
2689
+ ._EditorCanvas-zoomLevel_1h1vv_152 {
2690
+ color: var(--editor-text-secondary);
2807
2691
  display: inline-flex;
2808
- flex: 1;
2809
2692
  font-size: var(--editor-font-size-xxs);
2810
- gap: 8px;
2811
- justify-content: flex-start;
2812
- min-width: 0;
2693
+ font-variant-numeric: tabular-nums;
2694
+ justify-content: center;
2695
+ min-width: 38px;
2696
+ padding: 0 4px;
2697
+ user-select: none;
2698
+ }
2699
+
2700
+ /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/Editor/components/Sidebar/styles.module.css/#css-module-data */
2701
+ ._Sidebar_1ynke_8 {
2702
+ background: var(--editor-surface-panel);
2703
+ bottom: 0;
2704
+ display: flex;
2705
+ flex-direction: column;
2813
2706
  overflow: hidden;
2814
- padding: 4px 12px;
2815
- width: 100%;
2707
+ position: absolute;
2708
+ top: var(--editor-header-height, 0px);
2709
+ width: var(--editor-side-bar-width, 280px);
2710
+ z-index: 10;
2816
2711
  }
2817
- @media (hover: hover) and (pointer: fine) {
2818
- ._BrowserBar-urlTrigger_coofe_16:hover {
2819
- background: var(--editor-surface-hover);
2820
- border-color: var(--editor-border-default);
2821
- }
2822
- }
2823
- ._BrowserBar-urlTrigger_coofe_16:focus-within {
2824
- border-color: var(--editor-border-default);
2825
- box-shadow: var(--editor-ring);
2826
- outline: none;
2827
- }
2828
- ._BrowserBar-urlIcon_coofe_46 {
2829
- color: var(--editor-text-tertiary);
2830
- flex-shrink: 0;
2831
- }
2832
- ._BrowserBar-urlText_coofe_51 {
2833
- color: var(--editor-text-primary);
2834
- display: inline-flex;
2835
- flex: 1;
2836
- gap: 8px;
2837
- min-width: 0;
2838
- overflow: hidden;
2839
- text-align: left;
2840
- text-overflow: ellipsis;
2841
- white-space: nowrap;
2842
- }
2843
- ._BrowserBar-urlInput_coofe_63 {
2844
- color: var(--editor-text-primary);
2845
- flex: 1;
2846
- min-width: 0;
2847
- }
2848
- ._BrowserBar-itemPath_coofe_69 {
2849
- color: var(--editor-text-primary);
2850
- flex-shrink: 0;
2851
- }
2852
- ._BrowserBar-itemTitle_coofe_74 {
2853
- color: var(--editor-text-tertiary);
2854
- margin-left: auto;
2855
- overflow: hidden;
2856
- text-overflow: ellipsis;
2857
- white-space: nowrap;
2858
- }
2859
- ._BrowserBar-actions_coofe_82 {
2860
- align-items: center;
2861
- display: flex;
2862
- flex-shrink: 0;
2863
- gap: 2px;
2864
- margin-left: auto;
2865
- }
2866
- ._BrowserBar-deviceIcon_coofe_92 {
2867
- color: var(--editor-text-primary);
2868
- display: inline-flex;
2869
- }
2870
-
2871
- /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/Editor/components/Canvas/styles.module.css/#css-module-data */
2872
- ._EditorCanvas_1aq14_1 {
2873
- background: var(--editor-surface-sunken);
2874
- display: flex;
2875
- grid-area: editor;
2876
- flex-direction: column;
2877
- padding: calc(var(--editor-space-px) * 0.5);
2878
- position: relative;
2879
- overflow: hidden;
2880
- }
2881
- @media (min-width: 1198px) {
2882
- ._EditorCanvas_1aq14_1 {
2883
- padding: calc(var(--editor-space-px) * 0.75);
2884
- padding-top: calc(var(--editor-space-px) * 0.25);
2885
- }
2886
- ._EditorCanvas_1aq14_1:not(._EditorCanvas_1aq14_1:has(._EditorCanvas-controls_1aq14_17)) {
2887
- padding-top: calc(var(--editor-space-px) * 0.75);
2888
- }
2889
- }
2890
- ._EditorCanvas--fullScreen_1aq14_22 {
2891
- padding: 0;
2892
- overflow: hidden;
2893
- }
2894
- @media (min-width: 1198px) {
2895
- ._EditorCanvas--fullScreen_1aq14_22 {
2896
- padding: 0;
2897
- }
2898
- }
2899
- ._EditorCanvas--canvasFullScreen_1aq14_42 {
2900
- position: fixed;
2901
- inset: 0;
2902
- z-index: 1000;
2903
- padding: 0 !important;
2712
+ ._Sidebar--left_1ynke_20 {
2713
+ border-right: 1px solid var(--editor-border-subtle);
2714
+ left: 0;
2904
2715
  }
2905
- ._EditorCanvas-inner_1aq14_49 {
2906
- display: flex;
2907
- height: 100%;
2908
- justify-content: center;
2909
- min-width: 288px;
2910
- position: relative;
2911
- width: 100%;
2716
+ ._Sidebar--right_1ynke_25 {
2717
+ border-left: 1px solid var(--editor-border-subtle);
2718
+ right: 0;
2912
2719
  }
2913
- ._EditorCanvas-rootColumn_1aq14_62 {
2914
- box-sizing: content-box;
2720
+ ._Sidebar-body_1ynke_30 {
2915
2721
  display: flex;
2916
- flex-direction: column;
2917
- min-width: 321px;
2918
- height: 100%;
2919
- transform-origin: top;
2920
- }
2921
- @media (min-width: 1198px) {
2922
- ._EditorCanvas-rootColumn_1aq14_62 {
2923
- min-width: unset;
2924
- }
2925
- }
2926
- @media (prefers-reduced-motion: reduce) {
2927
- ._EditorCanvas-rootColumn_1aq14_62 {
2928
- transition: none !important;
2929
- }
2930
- }
2931
- ._EditorCanvas-root_1aq14_62 {
2932
- background: var(--editor-surface-panel);
2933
- outline: 1px solid var(--editor-border-subtle);
2934
- box-shadow: var(--editor-shadow-lg);
2935
- border-radius: 0 0 var(--editor-radius-md) var(--editor-radius-md);
2936
2722
  flex: 1;
2937
- pointer-events: none;
2938
- opacity: 0;
2939
- }
2940
- @media (prefers-reduced-motion: reduce) {
2941
- ._EditorCanvas-root_1aq14_62 {
2942
- transition: none !important;
2943
- }
2944
- }
2945
- ._EditorCanvas--ready_1aq14_99 ._EditorCanvas-root_1aq14_62 {
2946
- pointer-events: unset;
2947
- opacity: 1;
2948
- }
2949
- ._EditorCanvas-loader_1aq14_104 {
2950
- align-items: center;
2951
- color: var(--editor-text-tertiary);
2952
- display: flex;
2953
- inset: 0;
2954
- justify-content: center;
2955
- pointer-events: none;
2956
- position: absolute;
2957
- transition: opacity 250ms ease-out;
2958
- opacity: 0;
2959
- }
2960
- ._EditorCanvas--showLoader_1aq14_116 ._EditorCanvas-loader_1aq14_104 {
2961
- opacity: 1;
2962
- }
2963
- ._EditorCanvas--showLoader_1aq14_116._EditorCanvas--ready_1aq14_99 ._EditorCanvas-loader_1aq14_104 {
2964
- opacity: 0;
2965
- transition: none;
2966
- }
2967
- ._EditorCanvas-browserBar_1aq14_125 {
2968
- flex-shrink: 0;
2969
- width: 100%;
2970
- }
2971
- ._EditorCanvas-zoomControls_1aq14_130 {
2972
- align-items: center;
2973
- background: var(--editor-surface-panel);
2974
- border: 1px solid var(--editor-border-subtle);
2975
- border-radius: var(--editor-radius-md);
2976
- bottom: 16px;
2977
- box-shadow: var(--editor-shadow-md);
2978
- display: flex;
2979
- gap: 2px;
2980
- padding: 4px;
2981
- position: absolute;
2982
- right: 16px;
2983
- z-index: 10;
2984
- }
2985
-
2986
- /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/Editor/components/ResizeHandle/styles.module.css/#css-module-data */
2987
- @media (min-width: 766px) {
2988
- ._ResizeHandle_1u3rv_2 {
2989
- position: absolute;
2990
- width: 5px;
2991
- height: 100%;
2992
- cursor: col-resize;
2993
- z-index: 10;
2994
- background: transparent;
2995
- top: 0;
2996
- }
2997
- ._ResizeHandle_1u3rv_2:hover {
2998
- background: var(--editor-accent-soft);
2999
- }
3000
- ._ResizeHandle--left_1u3rv_16 {
3001
- right: -3px;
3002
- }
3003
- ._ResizeHandle--right_1u3rv_20 {
3004
- left: -3px;
3005
- }
3006
- }
3007
-
3008
- /* components/Editor/components/ResizeHandle/styles.css */
3009
- [data-resize-overlay] {
3010
- position: fixed;
3011
- top: 0;
3012
- left: 0;
3013
- right: 0;
3014
- bottom: 0;
3015
- z-index: 9999;
3016
- cursor: col-resize;
3017
- }
3018
-
3019
- /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/Editor/components/Sidebar/styles.module.css/#css-module-data */
3020
- ._Sidebar_14k7q_1 {
3021
- border-block-start: 1px solid var(--editor-border-subtle);
3022
- position: relative;
3023
- display: none;
3024
2723
  flex-direction: column;
2724
+ min-height: 0;
3025
2725
  overflow-y: auto;
3026
2726
  }
3027
- ._Sidebar--isVisible_14k7q_9 {
3028
- display: flex;
3029
- }
3030
- ._Sidebar--left_14k7q_13 {
3031
- background: var(--editor-surface-panel);
3032
- grid-area: left;
3033
- }
3034
- @media (min-width: 766px) {
3035
- ._Sidebar--left_14k7q_13 {
3036
- border-block-start: 0;
3037
- border-inline-end: 1px solid var(--editor-border-subtle);
2727
+ @media (max-width: 637px) {
2728
+ ._Sidebar_1ynke_8 {
2729
+ bottom: 0;
2730
+ left: 0;
2731
+ right: 0;
2732
+ top: auto;
2733
+ max-height: 50dvh;
2734
+ width: 100%;
3038
2735
  }
3039
- }
3040
- ._Sidebar--right_14k7q_25 {
3041
- background: var(--editor-surface-panel);
3042
- grid-area: right;
3043
- }
3044
- @media (min-width: 766px) {
3045
- ._Sidebar--right_14k7q_25 {
3046
- border-block-start: 0;
3047
- border-inline-start: 1px solid var(--editor-border-subtle);
2736
+ ._Sidebar--left_1ynke_20 {
2737
+ border-right: 0;
2738
+ border-top: 1px solid var(--editor-border-subtle);
2739
+ }
2740
+ ._Sidebar--right_1ynke_25 {
2741
+ border-left: 0;
2742
+ border-top: 1px solid var(--editor-border-subtle);
2743
+ z-index: 11;
3048
2744
  }
3049
- }
3050
- ._Sidebar-resizeHandle_14k7q_37 {
3051
- position: absolute;
3052
- height: 100%;
3053
- }
3054
- ._Sidebar--left_14k7q_13 + ._Sidebar-resizeHandle_14k7q_37 {
3055
- grid-area: left;
3056
- justify-self: end;
3057
- }
3058
- ._Sidebar--right_14k7q_25 + ._Sidebar-resizeHandle_14k7q_37 {
3059
- grid-area: right;
3060
- justify-self: start;
3061
2745
  }
3062
2746
 
3063
2747
  /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/Editor/components/Nav/styles.module.css/#css-module-data */
3064
- ._Nav_1g4tk_1 {
2748
+ ._Nav_1ft0o_1 {
3065
2749
  display: flex;
3066
2750
  align-items: center;
3067
2751
  padding: 10px 0;
3068
2752
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
3069
2753
  }
3070
2754
  @media (min-width: 638px) {
3071
- ._Nav_1g4tk_1 {
2755
+ ._Nav_1ft0o_1 {
3072
2756
  flex-direction: column;
3073
2757
  height: 100%;
3074
2758
  padding: 0;
@@ -3076,7 +2760,22 @@ body:has(._DropZone--isAnimating_1h108_70:empty) [data-editor-overlay] {
3076
2760
  align-items: stretch;
3077
2761
  }
3078
2762
  }
3079
- ._Nav-list_1g4tk_18 {
2763
+ ._Nav--horizontal_1ft0o_20,
2764
+ ._Nav--horizontal_1ft0o_20 {
2765
+ align-items: center;
2766
+ flex-direction: row;
2767
+ height: auto;
2768
+ padding: 0;
2769
+ }
2770
+ @media (min-width: 638px) {
2771
+ ._Nav--horizontal_1ft0o_20 {
2772
+ flex-direction: row;
2773
+ height: auto;
2774
+ padding: 0;
2775
+ align-items: center;
2776
+ }
2777
+ }
2778
+ ._Nav-list_1ft0o_36 {
3080
2779
  display: flex;
3081
2780
  list-style: none;
3082
2781
  margin: 0;
@@ -3087,7 +2786,7 @@ body:has(._DropZone--isAnimating_1h108_70:empty) [data-editor-overlay] {
3087
2786
  flex: 1;
3088
2787
  }
3089
2788
  @media (min-width: 638px) {
3090
- ._Nav-list_1g4tk_18 {
2789
+ ._Nav-list_1ft0o_36 {
3091
2790
  padding-top: 16px;
3092
2791
  flex-direction: column;
3093
2792
  gap: 4px;
@@ -3098,18 +2797,40 @@ body:has(._DropZone--isAnimating_1h108_70:empty) [data-editor-overlay] {
3098
2797
  justify-content: flex-start;
3099
2798
  }
3100
2799
  }
3101
- ._Nav-footer_1g4tk_42 {
2800
+ ._Nav--horizontal_1ft0o_20 ._Nav-list_1ft0o_36 {
2801
+ flex-direction: row;
2802
+ gap: 4px;
2803
+ padding-top: 0;
2804
+ width: auto;
2805
+ flex: 0 0 auto;
2806
+ overflow-x: auto;
2807
+ overflow-y: hidden;
2808
+ justify-content: flex-start;
2809
+ }
2810
+ @media (min-width: 638px) {
2811
+ ._Nav--horizontal_1ft0o_20 ._Nav-list_1ft0o_36 {
2812
+ flex-direction: row;
2813
+ gap: 4px;
2814
+ padding-top: 0;
2815
+ width: auto;
2816
+ flex: 0 0 auto;
2817
+ overflow-x: auto;
2818
+ overflow-y: hidden;
2819
+ justify-content: flex-start;
2820
+ }
2821
+ }
2822
+ ._Nav-footer_1ft0o_83 {
3102
2823
  display: none;
3103
2824
  }
3104
2825
  @media (min-width: 638px) {
3105
- ._Nav-footer_1g4tk_42 {
2826
+ ._Nav-footer_1ft0o_83 {
3106
2827
  display: flex;
3107
2828
  align-items: center;
3108
2829
  justify-content: center;
3109
2830
  padding: 12px 0;
3110
2831
  }
3111
2832
  }
3112
- ._NavItem-link_1g4tk_55 {
2833
+ ._NavItem-link_1ft0o_96 {
3113
2834
  text-align: center;
3114
2835
  align-items: center;
3115
2836
  justify-content: center;
@@ -3128,13 +2849,13 @@ body:has(._DropZone--isAnimating_1h108_70:empty) [data-editor-overlay] {
3128
2849
  position: relative;
3129
2850
  }
3130
2851
  @media (min-width: 638px) {
3131
- ._NavItem-link_1g4tk_55 {
2852
+ ._NavItem-link_1ft0o_96 {
3132
2853
  padding: 4px;
3133
2854
  width: 32px;
3134
2855
  height: 32px;
3135
2856
  }
3136
2857
  }
3137
- ._NavItem-linkLabel_1g4tk_83 {
2858
+ ._NavItem-linkLabel_1ft0o_124 {
3138
2859
  clip: rect(0 0 0 0);
3139
2860
  clip-path: inset(100%);
3140
2861
  height: 1px;
@@ -3143,64 +2864,51 @@ body:has(._DropZone--isAnimating_1h108_70:empty) [data-editor-overlay] {
3143
2864
  white-space: nowrap;
3144
2865
  width: 1px;
3145
2866
  }
3146
- ._NavItem_1g4tk_55:first-of-type {
2867
+ ._NavItem_1ft0o_96:first-of-type {
3147
2868
  padding-left: 0;
3148
2869
  }
3149
- ._NavItem_1g4tk_55:last-of-type {
2870
+ ._NavItem_1ft0o_96:last-of-type {
3150
2871
  padding-right: 0;
3151
2872
  }
3152
2873
  @media (min-width: 638px) {
3153
- ._NavItem_1g4tk_55:first-of-type,
3154
- ._NavItem_1g4tk_55:last-of-type {
2874
+ ._NavItem_1ft0o_96:first-of-type,
2875
+ ._NavItem_1ft0o_96:last-of-type {
3155
2876
  padding: 0;
3156
2877
  }
3157
2878
  }
3158
- ._NavItem-linkIcon_1g4tk_108 {
2879
+ ._NavItem-linkIcon_1ft0o_149 {
3159
2880
  height: 18px;
3160
2881
  width: 18px;
3161
2882
  display: flex;
3162
2883
  align-items: center;
3163
2884
  justify-content: center;
3164
2885
  }
3165
- ._NavItem-linkIcon_1g4tk_108 svg {
2886
+ ._NavItem-linkIcon_1ft0o_149 svg {
3166
2887
  width: 18px;
3167
2888
  height: 18px;
3168
2889
  }
3169
- ._NavItem--active_1g4tk_121 > ._NavItem-link_1g4tk_55 {
2890
+ ._NavItem--active_1ft0o_162 > ._NavItem-link_1ft0o_96 {
3170
2891
  background-color: var(--editor-accent-soft);
3171
2892
  color: var(--editor-text-accent);
3172
2893
  }
3173
- ._NavItem_1g4tk_55:not(._NavItem--active_1g4tk_121) > ._NavItem-link_1g4tk_55:hover {
2894
+ ._NavItem_1ft0o_96:not(._NavItem--active_1ft0o_162) > ._NavItem-link_1ft0o_96:hover {
3174
2895
  background-color: var(--editor-surface-hover);
3175
2896
  color: var(--editor-text-accent);
3176
2897
  }
3177
2898
  @media (min-width: 638px) {
3178
- ._NavItem--mobileOnly_1g4tk_132 {
2899
+ ._NavItem--mobileOnly_1ft0o_173 {
3179
2900
  display: none;
3180
2901
  }
3181
2902
  }
3182
- ._NavItem--desktopOnly_1g4tk_137 {
2903
+ ._NavItem--desktopOnly_1ft0o_178 {
3183
2904
  display: none;
3184
2905
  }
3185
2906
  @media (min-width: 638px) {
3186
- ._NavItem--desktopOnly_1g4tk_137 {
2907
+ ._NavItem--desktopOnly_1ft0o_178 {
3187
2908
  display: block;
3188
2909
  }
3189
2910
  }
3190
2911
 
3191
- /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/plugins/blocks/styles.module.css/#css-module-data */
3192
- ._BlocksPlugin_15ud0_1 {
3193
- padding: 16px;
3194
- height: 100%;
3195
- overflow-y: auto;
3196
- box-sizing: border-box;
3197
- scrollbar-width: none;
3198
- -ms-overflow-style: none;
3199
- }
3200
- ._BlocksPlugin_15ud0_1::-webkit-scrollbar {
3201
- display: none;
3202
- }
3203
-
3204
2912
  /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/plugins/fields/styles.module.css/#css-module-data */
3205
2913
  ._FieldsPlugin_262zt_1 {
3206
2914
  background: white;
@@ -3221,6 +2929,185 @@ body:has(._DropZone--isAnimating_1h108_70:empty) [data-editor-overlay] {
3221
2929
  }
3222
2930
  }
3223
2931
 
2932
+ /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/ui/Combobox/styles.module.css/#css-module-data */
2933
+ ._EditorCombobox-input_12a2a_4 {
2934
+ background: transparent;
2935
+ border: 0;
2936
+ color: inherit;
2937
+ flex: 1;
2938
+ font: inherit;
2939
+ font-size: var(--editor-font-size-xxs);
2940
+ min-width: 0;
2941
+ outline: none;
2942
+ padding: 0;
2943
+ width: 100%;
2944
+ }
2945
+ ._EditorCombobox-input_12a2a_4::placeholder {
2946
+ color: var(--editor-text-tertiary);
2947
+ }
2948
+ ._EditorCombobox-trigger_12a2a_21 {
2949
+ align-items: center;
2950
+ background: transparent;
2951
+ border: 0;
2952
+ color: var(--editor-text-tertiary);
2953
+ cursor: pointer;
2954
+ display: inline-flex;
2955
+ flex-shrink: 0;
2956
+ height: 20px;
2957
+ justify-content: center;
2958
+ outline: none;
2959
+ padding: 0;
2960
+ width: 20px;
2961
+ }
2962
+ @media (hover: hover) and (pointer: fine) {
2963
+ ._EditorCombobox-trigger_12a2a_21:hover {
2964
+ color: var(--editor-text-primary);
2965
+ }
2966
+ }
2967
+ ._EditorCombobox-triggerIcon_12a2a_42 {
2968
+ pointer-events: none;
2969
+ }
2970
+ ._EditorCombobox-positioner_12a2a_46 {
2971
+ z-index: 50;
2972
+ }
2973
+ ._EditorCombobox-content_12a2a_50 {
2974
+ background: var(--editor-surface-raised);
2975
+ border: 1px solid var(--editor-border-subtle);
2976
+ border-radius: var(--editor-radius-md);
2977
+ box-shadow: var(--editor-shadow-md);
2978
+ color: var(--editor-text-primary);
2979
+ font-family: var(--editor-font-family);
2980
+ font-size: var(--editor-font-size-xxs);
2981
+ max-height: var(--available-height);
2982
+ min-width: var(--anchor-width);
2983
+ overflow: hidden;
2984
+ transform-origin: var(--transform-origin);
2985
+ z-index: 50;
2986
+ }
2987
+ ._EditorCombobox-list_12a2a_65 {
2988
+ max-height: inherit;
2989
+ overflow-y: auto;
2990
+ padding: 4px;
2991
+ }
2992
+ ._EditorCombobox-item_12a2a_71 {
2993
+ align-items: center;
2994
+ border-radius: var(--editor-radius-sm);
2995
+ cursor: pointer;
2996
+ display: flex;
2997
+ font: inherit;
2998
+ font-size: var(--editor-font-size-xxs);
2999
+ gap: 8px;
3000
+ outline: none;
3001
+ padding: 6px 8px 6px 28px;
3002
+ position: relative;
3003
+ user-select: none;
3004
+ }
3005
+ ._EditorCombobox-item_12a2a_71[data-highlighted],
3006
+ ._EditorCombobox-item_12a2a_71[data-selected] {
3007
+ background: var(--editor-accent-soft);
3008
+ color: var(--editor-text-accent);
3009
+ }
3010
+ ._EditorCombobox-item_12a2a_71[data-disabled] {
3011
+ cursor: not-allowed;
3012
+ opacity: 0.5;
3013
+ pointer-events: none;
3014
+ }
3015
+ ._EditorCombobox-itemIndicator_12a2a_97 {
3016
+ align-items: center;
3017
+ color: var(--editor-accent-strong);
3018
+ display: inline-flex;
3019
+ justify-content: center;
3020
+ left: 8px;
3021
+ pointer-events: none;
3022
+ position: absolute;
3023
+ width: 14px;
3024
+ }
3025
+ ._EditorCombobox-empty_12a2a_110:not(:empty) {
3026
+ color: var(--editor-text-tertiary);
3027
+ font-size: var(--editor-font-size-xxs);
3028
+ padding: 12px 8px;
3029
+ text-align: center;
3030
+ }
3031
+
3032
+ /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/BrowserBar/styles.module.css/#css-module-data */
3033
+ ._BrowserBar_ey7dt_3 {
3034
+ align-items: center;
3035
+ display: flex;
3036
+ gap: 8px;
3037
+ width: 100%;
3038
+ }
3039
+ ._BrowserBar-urlTrigger_ey7dt_13 {
3040
+ align-items: center;
3041
+ background: var(--editor-surface-sunken);
3042
+ border: 1px solid var(--editor-border-subtle);
3043
+ border-radius: 9999px;
3044
+ color: var(--editor-text-primary);
3045
+ display: inline-flex;
3046
+ flex: 1;
3047
+ font-size: var(--editor-font-size-xxs);
3048
+ gap: 8px;
3049
+ justify-content: flex-start;
3050
+ min-width: 0;
3051
+ overflow: hidden;
3052
+ padding: 4px 12px;
3053
+ width: 100%;
3054
+ }
3055
+ @media (hover: hover) and (pointer: fine) {
3056
+ ._BrowserBar-urlTrigger_ey7dt_13:hover {
3057
+ background: var(--editor-surface-hover);
3058
+ border-color: var(--editor-border-default);
3059
+ }
3060
+ }
3061
+ ._BrowserBar-urlTrigger_ey7dt_13:focus-within {
3062
+ border-color: var(--editor-border-default);
3063
+ box-shadow: var(--editor-ring);
3064
+ outline: none;
3065
+ }
3066
+ ._BrowserBar-urlIcon_ey7dt_43 {
3067
+ color: var(--editor-text-tertiary);
3068
+ flex-shrink: 0;
3069
+ }
3070
+ ._BrowserBar-urlText_ey7dt_48 {
3071
+ color: var(--editor-text-primary);
3072
+ display: inline-flex;
3073
+ flex: 1;
3074
+ gap: 8px;
3075
+ min-width: 0;
3076
+ overflow: hidden;
3077
+ text-align: left;
3078
+ text-overflow: ellipsis;
3079
+ white-space: nowrap;
3080
+ }
3081
+ ._BrowserBar-urlInput_ey7dt_60 {
3082
+ color: var(--editor-text-primary);
3083
+ flex: 1;
3084
+ min-width: 0;
3085
+ }
3086
+ ._BrowserBar-itemPath_ey7dt_66 {
3087
+ color: var(--editor-text-primary);
3088
+ flex-shrink: 0;
3089
+ }
3090
+ ._BrowserBar-itemTitle_ey7dt_71 {
3091
+ color: var(--editor-text-tertiary);
3092
+ margin-left: auto;
3093
+ overflow: hidden;
3094
+ text-overflow: ellipsis;
3095
+ white-space: nowrap;
3096
+ }
3097
+
3098
+ /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/plugins/blocks/styles.module.css/#css-module-data */
3099
+ ._BlocksPlugin_15ud0_1 {
3100
+ padding: 16px;
3101
+ height: 100%;
3102
+ overflow-y: auto;
3103
+ box-sizing: border-box;
3104
+ scrollbar-width: none;
3105
+ -ms-overflow-style: none;
3106
+ }
3107
+ ._BlocksPlugin_15ud0_1::-webkit-scrollbar {
3108
+ display: none;
3109
+ }
3110
+
3224
3111
  /* css-module:/Users/rami/Documents/apps/react-editor/packages/core/plugins/outline/styles.module.css/#css-module-data */
3225
3112
  ._OutlinePlugin_q92j6_1 {
3226
3113
  padding: 16px;