@mevdragon/vidfarm-devcli 0.12.0 → 0.14.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.
@@ -6831,7 +6831,9 @@ export function renderLibraryPage(input) {
6831
6831
 
6832
6832
  .library-frame { padding-left: 432px; }
6833
6833
  .library-body, .library-shell, .library-list-shell { min-height: 0; }
6834
- .library-shell { display: grid; grid-template-rows: auto minmax(0, 1fr); gap: 12px; }
6834
+ /* minmax(0,1fr) column: without it the implicit track grows to the
6835
+ toolbar's min-content width and the whole page overflows on phones. */
6836
+ .library-shell { display: grid; grid-template-columns: minmax(0, 1fr); grid-template-rows: auto minmax(0, 1fr); gap: 12px; }
6835
6837
  .library-toolbar {
6836
6838
  display: grid;
6837
6839
  grid-template-columns: auto minmax(200px, 1fr) auto auto;
@@ -7036,11 +7038,15 @@ export function renderLibraryPage(input) {
7036
7038
  ${renderReadyPostScheduleStyles()}
7037
7039
  @media (max-width: 1180px) {
7038
7040
  .library-frame { padding-left: 0; }
7039
- .editor-right-rail { position: relative; width: 100%; height: 560px; margin-top: 14px; border-radius: 24px; overflow: hidden; }
7040
7041
  .library-post { grid-template-columns: auto 248px minmax(0, 1fr); }
7041
7042
  .library-post-actions { grid-column: 3; justify-content: flex-start; }
7042
7043
  .library-post[data-collapsed="true"] .library-post-actions { grid-column: auto; }
7043
7044
  }
7045
+ @media (min-width: 1025px) and (max-width: 1180px) {
7046
+ /* Rail stacks inline below the content in this band only; at ≤1024px
7047
+ the shared shell turns the rail into the FAB + popup overlay. */
7048
+ .editor-right-rail { position: relative; width: 100%; height: 560px; margin-top: 14px; border-radius: 24px; overflow: hidden; }
7049
+ }
7044
7050
  @media (min-width: 1025px) and (max-width: 1180px) {
7045
7051
  /* The chat rail stacks below the frame at 1180px but the shell only unlocks
7046
7052
  document scroll at 1024px; unlock it here too so stacked content stays reachable. */
@@ -7129,18 +7135,7 @@ export function renderLibraryPage(input) {
7129
7135
  grid-row: 2;
7130
7136
  }
7131
7137
  .library-frame { padding-left: 0; }
7132
- .editor-right-rail {
7133
- position: fixed !important;
7134
- inset: 0;
7135
- z-index: 110;
7136
- width: 100%;
7137
- height: 100svh;
7138
- min-height: 0;
7139
- margin: 0;
7140
- border-radius: 0;
7141
- overflow: visible;
7142
- pointer-events: none;
7143
- }
7138
+ /* Rail overlay + FAB + popup at ≤1024px come from the shared shell styles. */
7144
7139
  .library-body { padding-top: 12px; }
7145
7140
  .library-shell { min-width: 0; }
7146
7141
  .library-list-shell { overflow: visible; padding-right: 0; }