File tree Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -103,9 +103,12 @@ const ErrorMessage = ({ message }: { message: ThreadMessage }) => {
103103 key = { message . id }
104104 >
105105 < div className = "flex justify-between border-b border-inherit px-4 py-2" >
106- < h6 className = "text-[hsla(var(--destructive-bg))]" > Error</ h6 >
106+ < h6 className = "flex items-center gap-x-1 font-semibold text-[hsla(var(--destructive-bg))]" >
107+ < span className = "h-2 w-2 rounded-full bg-[hsla(var(--destructive-bg))]" />
108+ < span > Error</ span >
109+ </ h6 >
107110 < div className = "flex items-center gap-x-4 text-xs" >
108- < div >
111+ < div className = "font-semibold" >
109112 < span
110113 className = "flex cursor-pointer items-center gap-x-1 text-[hsla(var(--app-link))]"
111114 onClick = { ( ) => setModalTroubleShooting ( true ) }
@@ -116,7 +119,7 @@ const ErrorMessage = ({ message }: { message: ThreadMessage }) => {
116119 < ModalTroubleShooting />
117120 </ div >
118121 < div
119- className = "flex cursor-pointer items-center gap-x-1 text-[hsla(var(--text-secondary))]"
122+ className = "flex cursor-pointer items-center gap-x-1 font-semibold text-[hsla(var(--text-secondary))]"
120123 onClick = { handleCopy }
121124 >
122125 { copied ? (
@@ -138,7 +141,7 @@ const ErrorMessage = ({ message }: { message: ThreadMessage }) => {
138141 </ div >
139142 < div className = "max-h-[80px] w-full overflow-x-auto p-4 py-2" >
140143 < div
141- className = "text-xs leading-relaxed text-[hsla(var(--text-secondary))]"
144+ className = "font-serif text-xs leading-relaxed text-[hsla(var(--text-secondary))]"
142145 ref = { errorDivRef }
143146 >
144147 { getErrorTitle ( ) }
Original file line number Diff line number Diff line change @@ -55,9 +55,8 @@ module.exports = {
5555 } ,
5656 extend : {
5757 fontFamily : {
58- fontFamily : {
59- sans : [ 'Inter var' , ...defaultTheme . fontFamily . sans ] ,
60- } ,
58+ sans : [ 'Inter' , ...defaultTheme . fontFamily . sans ] ,
59+ serif : [ 'Roboto Mono' , ...defaultTheme . fontFamily . mono ] ,
6160 } ,
6261 } ,
6362 } ,
You can’t perform that action at this time.
0 commit comments