File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
packages/web/app/components Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -200,12 +200,12 @@ export function MarkdownRenderer({
200200 </ blockquote >
201201 ) ,
202202 ul : ( { children } ) => (
203- < ul className = "list-disc list-outside space-y-1 my-4 ml-6 text-foreground" >
203+ < ul className = "list-disc list-outside space-y-1 my-4 ml-4 text-foreground" >
204204 { children }
205205 </ ul >
206206 ) ,
207207 ol : ( { children } ) => (
208- < ol className = "list-decimal list-outside space-y-1 my-4 ml-6 text-foreground" >
208+ < ol className = "list-decimal list-outside space-y-1 my-4 ml-4 text-foreground" >
209209 { children }
210210 </ ol >
211211 ) ,
Original file line number Diff line number Diff line change @@ -570,11 +570,11 @@ export function DevlogDetails({
570570 < div
571571 key = { note . id }
572572 className = { cn (
573- 'border-l-4 border-primary/20 pl-4 py-3 transition-all duration-500' ,
573+ 'border-l-4 border-primary/20 pl-4 py-1 transition-all duration-500' ,
574574 isNewNote && 'animate-in slide-in-from-top-2 duration-400 bg-primary/5' ,
575575 ) }
576576 >
577- < div className = "flex items-center space-x-2 mb-3 " >
577+ < div className = "flex items-center space-x-2 mb-4 " >
578578 { getCategoryIconRaw ( note . category as NoteCategory ) }
579579 < Badge variant = "secondary" className = "text-xs" >
580580 { note . category }
You can’t perform that action at this time.
0 commit comments