Newer
Older
cortex-hub / ui / client-app / src / components / ChatWindow.css
code {
    /* font-family: 'Courier New', Courier, monospace; */
    background-color: #f4f4f4;
    color: #333;
    padding: 2px 4px;
    border-radius: 4px;
    font-size: 90%;
    font-weight: bold;
  }

  pre {
    font-family: 'Courier New', monospace;
    background-color: #f4f4f4;
    padding: 1em;
    border-radius: 5px;
    border: 1px solid #ddd;
    overflow-x: auto;
    white-space: pre-wrap; /* This helps with wrapping long lines */
    word-wrap: break-word; /* Prevents overflow */
    line-height: 1.5;
    color: #333;
  }