CaffeinatedCoding commited on
Commit
3ac38f9
·
verified ·
1 Parent(s): 3827ef0

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. frontend/style.css +18 -5
frontend/style.css CHANGED
@@ -453,17 +453,27 @@ body {
453
  }
454
 
455
  /* ── Message bubbles ── */
456
- .msg { display: flex; flex-direction: column; gap: 6px; animation: fadeUp 0.3s ease; width: 100%; }
 
 
 
 
 
 
 
457
 
458
- .msg-user { align-items: flex-end; }
459
- .msg-ai { align-items: flex-start; }
460
 
461
  .bubble-user {
462
  background: var(--navy-4);
463
  border: 1px solid var(--border);
464
  border-radius: 16px 16px 4px 16px;
465
  padding: 10px 14px;
466
- max-width: 72%;
 
 
 
467
  color: var(--text-1);
468
  font-size: 13px;
469
  line-height: 1.5;
@@ -475,7 +485,10 @@ body {
475
  border-left: 3px solid var(--gold);
476
  border-radius: 4px 16px 16px 16px;
477
  padding: 14px 18px;
478
- max-width: 88%;
 
 
 
479
  color: var(--text-1);
480
  font-size: 13px;
481
  line-height: 1.6;
 
453
  }
454
 
455
  /* ── Message bubbles ── */
456
+ .msg {
457
+ display: flex;
458
+ flex-direction: column;
459
+ gap: 6px;
460
+ animation: fadeUp 0.3s ease;
461
+ width: 100%;
462
+ margin-bottom: 4px;
463
+ }
464
 
465
+ .msg-user { align-items: flex-end; margin: 0 0 8px 0; }
466
+ .msg-ai { align-items: flex-start; margin: 0 0 8px 0; }
467
 
468
  .bubble-user {
469
  background: var(--navy-4);
470
  border: 1px solid var(--border);
471
  border-radius: 16px 16px 4px 16px;
472
  padding: 10px 14px;
473
+ max-width: 70%;
474
+ word-wrap: break-word;
475
+ overflow-wrap: break-word;
476
+ word-break: break-word;
477
  color: var(--text-1);
478
  font-size: 13px;
479
  line-height: 1.5;
 
485
  border-left: 3px solid var(--gold);
486
  border-radius: 4px 16px 16px 16px;
487
  padding: 14px 18px;
488
+ max-width: 85%;
489
+ word-wrap: break-word;
490
+ overflow-wrap: break-word;
491
+ word-break: break-word;
492
  color: var(--text-1);
493
  font-size: 13px;
494
  line-height: 1.6;