@seatlayer/js 0.48.0 → 0.48.2

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/manager.cjs CHANGED
@@ -3874,7 +3874,18 @@ var MANAGER_CSS = (
3874
3874
  .slm input{font:inherit}
3875
3875
 
3876
3876
  /* top bar */
3877
- .slm-bar{display:grid;grid-template-columns:auto auto minmax(0,1fr);align-items:center;column-gap:14px;row-gap:10px;
3877
+ /* FOUR columns, because the bar has four children: modes, the tools
3878
+ select, the live badge, and the actions. With three, the actions had no
3879
+ column and fell to an implicit second row \u2014 where justify-self:end
3880
+ aligned them to the right of column ONE, so they read as indented
3881
+ rather than as either edge. The 1fr moves to the last column so the
3882
+ actions sit hard right and the live badge hugs its own text instead of
3883
+ stretching across the free space.
3884
+
3885
+ .slm.compact still spans the actions full-width on its own row below;
3886
+ that wrap is deliberate and is why this looked intermittent \u2014 the same
3887
+ broken layout had one designed cause and one accidental one. */
3888
+ .slm-bar{display:grid;grid-template-columns:auto auto auto minmax(0,1fr);align-items:center;column-gap:14px;row-gap:10px;
3878
3889
  padding:10px 16px;border-bottom:1px solid var(--slm-line);flex:none}
3879
3890
  .slm-modes{display:inline-flex;background:var(--slm-surface);border:1px solid var(--slm-line);border-radius:999px;padding:3px}
3880
3891
  .slm-mode{padding:6px 16px;border-radius:999px;font-weight:700;font-size:13px;color:var(--slm-muted)}