diff --git a/frontend/src/conversation/ConversationBubble.module.css b/frontend/src/conversation/ConversationBubble.module.css
new file mode 100644
index 000000000..4a8d3a12f
--- /dev/null
+++ b/frontend/src/conversation/ConversationBubble.module.css
@@ -0,0 +1,11 @@
+.list p {
+ display: inline;
+}
+
+.list li:not(:first-child) {
+ margin-top: 1em;
+}
+
+.list li > .list {
+ margin-top: 1em;
+}
diff --git a/frontend/src/conversation/ConversationBubble.tsx b/frontend/src/conversation/ConversationBubble.tsx
index ad7db7a74..47fe709ae 100644
--- a/frontend/src/conversation/ConversationBubble.tsx
+++ b/frontend/src/conversation/ConversationBubble.tsx
@@ -1,6 +1,7 @@
import { forwardRef, useState } from 'react';
import Avatar from '../Avatar';
import { FEEDBACK, MESSAGE_TYPE } from './conversationModels';
+import classes from './ConversationBubble.module.css';
import Alert from './../assets/alert.svg';
import { ReactComponent as Like } from './../assets/like.svg';
import { ReactComponent as Dislike } from './../assets/dislike.svg';
@@ -40,16 +41,6 @@ const ConversationBubble = forwardRef<
}, 2000);
};
- const List = ({
- ordered,
- children,
- }: {
- ordered?: boolean;
- children: React.ReactNode;
- }) => {
- const Tag = ordered ? 'ol' : 'ul';
- return {children}
;
+ ul({ children }) {
+ return (
+