@luckydraw/blex 0.1.4 → 0.1.5

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.
@@ -157,14 +157,15 @@
157
157
  .blex-poll__review-btn:hover { background: var(--blex-border); }
158
158
 
159
159
  /* \u2500\u2500 status \u2500\u2500 */
160
- .blex-status { padding: 8px 12px; }
160
+ .blex-status { padding: 8px 12px; overflow: hidden; }
161
161
  .blex-status__entry {
162
162
  display: flex; align-items: center; gap: 8px;
163
163
  padding: 6px 0; border-bottom: 1px solid var(--blex-border);
164
+ min-width: 0;
164
165
  }
165
166
  .blex-status__entry:last-child { border-bottom: none; }
166
- .blex-status__key { font-size: 13px; font-weight: 600; min-width: 100px; }
167
- .blex-status__value { font-size: 13px; flex: 1; }
167
+ .blex-status__key { font-size: 13px; font-weight: 600; flex-shrink: 0; }
168
+ .blex-status__value { font-size: 13px; flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
168
169
  .blex-status__indicator {
169
170
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
170
171
  }
@@ -173,8 +174,8 @@
173
174
  .blex-status__indicator--error { background: var(--blex-error); }
174
175
 
175
176
  /* \u2500\u2500 metric \u2500\u2500 */
176
- .blex-metric { text-align: center; padding: 20px 16px; }
177
- .blex-metric__value { font-size: 36px; font-weight: 700; line-height: 1.2; }
177
+ .blex-metric { text-align: center; padding: 20px 16px; overflow: hidden; }
178
+ .blex-metric__value { font-size: 36px; font-weight: 700; line-height: 1.2; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
178
179
  .blex-metric__label { font-size: 13px; opacity: 0.7; margin-top: 4px; }
179
180
  .blex-metric__trend { font-size: 14px; margin-top: 8px; font-weight: 500; }
180
181
  .blex-metric__trend--up { color: var(--blex-success); }
@@ -391,7 +392,7 @@
391
392
 
392
393
  /* \u2500\u2500 layout \u2500\u2500 */
393
394
  .blex-layout { border: none; padding: 0; background: transparent; gap: 12px; }
394
- .blex-layout__child { min-width: 0; }
395
+ .blex-layout__child { min-width: 0; overflow: hidden; }
395
396
 
396
397
  /* \u2500\u2500 kanban \u2500\u2500 */
397
398
  .blex-kanban {