Skip to content

Commit 4af4500

Browse files
committed
feat: chatbot makdown styles updated
1 parent fa488e1 commit 4af4500

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Common/Markdown/MarkDown.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,6 @@ const MarkDown = ({
8181

8282
renderer.heading = ({ text, depth }: Tokens.Heading) => {
8383
// Alternative debugging - add to window object
84-
if (typeof window !== 'undefined') {
85-
;(window as any).debugHeadingText = text
86-
}
8784
const escapedText = disableEscapedText ? '' : text.toLowerCase().replace(/[^\w]+/g, '-')
8885

8986
return `

src/Common/Markdown/markdown.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,4 +132,7 @@
132132
ul.md-list ul {
133133
margin: 8px 0;
134134
}
135+
ol {
136+
padding-left: 15px;
137+
}
135138
}

0 commit comments

Comments
 (0)