lumencode 1.0.0 → 1.1.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/public/style.css CHANGED
@@ -123,7 +123,7 @@ input, textarea { font-family: inherit; color: inherit; }
123
123
 
124
124
  /* ── Layout ── */
125
125
  #app { min-height: 100vh; background: var(--background); color: var(--foreground); }
126
- .app-grid { display: grid; grid-template-columns: 260px 1fr; transition: grid-template-columns 0.3s ease; }
126
+ .app-grid { display: grid; grid-template-columns: 260px 1fr; }
127
127
  .app-grid.rail-collapsed { grid-template-columns: 56px 1fr; }
128
128
 
129
129
  /* ── Rail ── */
@@ -131,6 +131,7 @@ input, textarea { font-family: inherit; color: inherit; }
131
131
  background: var(--rail);
132
132
  color: var(--rail-foreground);
133
133
  min-height: 100vh;
134
+ min-width: 0;
134
135
  display: flex;
135
136
  flex-direction: column;
136
137
  position: sticky;
@@ -313,7 +314,7 @@ input, textarea { font-family: inherit; color: inherit; }
313
314
  .rail.collapsed .rail-toggle { display: flex; }
314
315
 
315
316
  /* ── Main ── */
316
- .main-content { min-height: 100vh; }
317
+ .main-content { min-height: 100vh; min-width: 0; overflow-x: hidden; }
317
318
 
318
319
  /* ── Primitives ── */
319
320
  .font-mono { font-family: var(--font-mono); }