@agentiffai/design 1.3.3 → 1.3.4

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.
@@ -3246,6 +3246,11 @@ var MessageBubble = styled4.div`
3246
3246
  /* Smooth transitions */
3247
3247
  transition: all ${tokens.transitions.fast};
3248
3248
 
3249
+ /* Ensure long strings don't overflow */
3250
+ overflow: hidden;
3251
+ overflow-wrap: break-word;
3252
+ word-break: break-word;
3253
+
3249
3254
  /* Username styling */
3250
3255
  strong {
3251
3256
  font-size: ${tokens.typography.fontSize.xs};
@@ -3259,6 +3264,8 @@ var MessageContent2 = styled4.p`
3259
3264
  font-size: ${tokens.typography.fontSize.sm};
3260
3265
  line-height: ${tokens.typography.lineHeight.normal};
3261
3266
  word-wrap: break-word;
3267
+ overflow-wrap: break-word;
3268
+ word-break: break-word;
3262
3269
  white-space: pre-wrap;
3263
3270
  `;
3264
3271
  var MessageTime2 = styled4.time`