Skip to content

Commit 0af3dad

Browse files
Fix missing padding on function parameters
1 parent 7620e49 commit 0af3dad

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/components/syntaxes/cards/FunctionCard.astro

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ const { defaultProps, func }: Props = Astro.props;
5353
.code-card {
5454
display: flex;
5555
flex-direction: column;
56+
gap: 0.25rem;
5657
padding: 1rem;
5758

5859
background-color: var(--sl-color-black);
@@ -62,7 +63,7 @@ const { defaultProps, func }: Props = Astro.props;
6263

6364
.title {
6465
font-size: var(--sl-text-xl);
65-
margin-bottom: 0.5rem;
66+
margin-bottom: 0.25rem;
6667
}
6768
</style>
6869

0 commit comments

Comments
 (0)