Improve vertical alignment of lists in chat messages on web app

- Make train of thought icons to be top aligned, next to the
  their intermediate step heading
- Add margin bottom to ordered, unordered lists in chat message,
  similar to how it is already added for paragraphs
This commit is contained in:
Debanjum Singh Solanky
2024-09-11 12:44:46 -07:00
parent 179357b28a
commit 3dcc8695b2

View File

@@ -11,6 +11,9 @@ div.chatMessageWrapper {
padding-bottom: 1rem;
max-width: 80vw;
}
div.chatMessageWrapper ol,
div.chatMessageWrapper ul,
div.chatMessageWrapper p:not(:last-child) {
margin-bottom: 16px;
}
@@ -131,6 +134,12 @@ div.trainOfThought.primary p {
div.trainOfThoughtElement {
display: grid;
grid-template-columns: auto 1fr;
align-items: start;
}
div.trainOfThoughtElement ol,
div.trainOfThoughtElement ul {
margin: auto;
}
@media screen and (max-width: 768px) {