@@ -57,7 +57,7 @@ export default function MarkdownPreview({ content, previewRef }) {
5757 ul : ( props ) => < ul className = "list-disc list-inside mb-3 text-gray-700" { ...props } /> ,
5858 ol : ( props ) => < ol className = "list-decimal list-inside mb-3 text-gray-700" { ...props } /> ,
5959 li : ( props ) => < li className = "mb-1 text-gray-700" { ...props } /> ,
60- blockquote : ( props ) => < blockquote className = "border-l-4 border-blue-500 pl-4 italic my-3 text-gray-600" { ...props } /> ,
60+ blockquote : ( props ) => < blockquote className = "border-l-4 border-gray-200 pl-4 italic my-3 text-gray-600 bg-gray-50 py-2 rounded-r " { ...props } /> ,
6161 table : ( props ) => (
6262 < div className = "overflow-x-auto my-4" >
6363 < table className = "min-w-full border-collapse border border-gray-300" { ...props } />
@@ -156,9 +156,9 @@ export default function MarkdownPreview({ content, previewRef }) {
156156 }
157157
158158 return (
159- < div className = "my-4 p-4 bg-gray-100 border border-gray-200 rounded-xl shadow-sm max-w-lg" >
159+ < div className = "my-4 p-4 bg-gray-100 border border-gray-200 rounded-xl shadow-sm max-w-lg audio-player " >
160160 < div className = "flex items-center mb-3" >
161- < div className = "flex-shrink-0 w-8 h-8 bg-blue-600 rounded-full flex items-center justify-center mr-3" >
161+ < div className = "flex-shrink-0 w-8 h-8 bg-blue-400 rounded-full flex items-center justify-center mr-3" >
162162 < Music className = "h-4 w-4 text-white" />
163163 </ div >
164164 < div className = "flex-1 min-w-0" >
@@ -172,7 +172,7 @@ export default function MarkdownPreview({ content, previewRef }) {
172172 src = { src }
173173 controls = { controls }
174174 preload = { preload }
175- className = "w-full rounded-md"
175+ className = "w-full rounded-md audio-element "
176176 style = { { height : "40px" , outline : "none" } }
177177 { ...props }
178178 />
0 commit comments