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

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. frontend/style.css +4 -0
frontend/style.css CHANGED
@@ -432,7 +432,9 @@ body {
432
  .messages-container {
433
  flex: 1;
434
  overflow-y: auto;
 
435
  padding: 16px 0 12px;
 
436
  max-height: calc(100vh - var(--topbar-h) - var(--input-h) - 40px);
437
  }
438
 
@@ -440,12 +442,14 @@ body {
440
  .messages-container::-webkit-scrollbar-thumb { background: var(--navy-4); border-radius: 2px; }
441
 
442
  .messages-list {
 
443
  max-width: 760px;
444
  margin: 0 auto;
445
  padding: 0 24px;
446
  display: flex;
447
  flex-direction: column;
448
  gap: 28px;
 
449
  }
450
 
451
  /* ── Message bubbles ── */
 
432
  .messages-container {
433
  flex: 1;
434
  overflow-y: auto;
435
+ overflow-x: hidden;
436
  padding: 16px 0 12px;
437
+ width: 100%;
438
  max-height: calc(100vh - var(--topbar-h) - var(--input-h) - 40px);
439
  }
440
 
 
442
  .messages-container::-webkit-scrollbar-thumb { background: var(--navy-4); border-radius: 2px; }
443
 
444
  .messages-list {
445
+ width: 100%;
446
  max-width: 760px;
447
  margin: 0 auto;
448
  padding: 0 24px;
449
  display: flex;
450
  flex-direction: column;
451
  gap: 28px;
452
+ flex-wrap: nowrap;
453
  }
454
 
455
  /* ── Message bubbles ── */