Skip to content

Commit

Permalink
fix: update styles
Browse files Browse the repository at this point in the history
  • Loading branch information
Dunqing committed May 9, 2022
1 parent 954fbe9 commit 38a9724
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions playground/src/Resume.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ function Resume() {
</div>
},
'h3': ({ ...props }) => <h3 className="p-y-1 text-lg font-semibold" {...props}></h3>,
'ul': ({ ...props }) => <ul className="text-0.95rem list-disc list-inside p-y-1" {...props}></ul>,
'ol': ({ ...props }) => <ol className="text-0.95rem list-decimal list-inside p-y-1" {...props}></ol>,
'ul': ({ ...props }) => <ul className="text-0.95rem p-l-5 list-disc p-y-1" {...props}></ul>,
'ol': ({ ...props }) => <ol className="text-0.95rem p-l-5 list-decimal p-y-1" {...props}></ol>,
'li': ({ ...props }) => <li className="" {...props}></li>,
'a': ({ ...props }) => <a className="text-blue underline" {...props}></a>,
'p': ({ ...props }) => <p className="font-medium p-y-1" {...props}></p>,
Expand All @@ -45,7 +45,7 @@ function Resume() {
return <header {...props} className="flex flex-col items-center p-4" />
},
'header-h1': ({ node: _, ...props }) => {
return <h1 {...props} className="text-2xl" />
return <h1 {...props} className="font-bold text-2xl" />
},
'header-ul': ({ ...props }) => {
return <ul {...props} className="list-none flex flex-wrap" />
Expand Down

1 comment on commit 38a9724

@vercel
Copy link

@vercel vercel bot commented on 38a9724 May 9, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.