Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Small markdown tweaks
  • Loading branch information
ryyppy committed Feb 1, 2023
commit b734d6ac3d70fbf1e8ed92bb0e43b56597e7ef94
4 changes: 2 additions & 2 deletions src/components/Markdown.res
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ module H2 = {
module H3 = {
@react.component
let make = (~id, ~children) =>
<h3 className="group mt-8 mb-1 hl-4">
<h3 className="group mt-8 mb-4 hl-4">
children
<span className="ml-2">
<Anchor id />
Expand Down Expand Up @@ -190,7 +190,7 @@ module InlineCode = {
@react.component
let make = (~children) =>
<code
className="md-inline-code px-2 py-0.5 text-14 text-gray-60 font-mono rounded-sm bg-gray-10-tr border border-gray-90 border-opacity-5">
className="md-inline-code px-2 py-0.5 text-gray-60 font-mono rounded-sm bg-gray-10-tr border border-gray-90 border-opacity-5">
children
</code>
}
Expand Down