Skip to content

Commit

Permalink
Merge pull request #907 from ember-learn/function-arguments
Browse files Browse the repository at this point in the history
Adds styling to the parameters & return types
  • Loading branch information
MinThaMie authored May 6, 2024
2 parents 1e643e7 + 76f78be commit 0f9c749
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions app/styles/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,23 @@ a.class-field-description--link:hover svg {
fill: var(--color-brand);
}



.parameter, .return {
display: flex;
gap: var(--spacing-1);
}
.parameter dt, .return dt {
font-weight: bold;
}
dd {
margin: 0;
}
.parameter-type, .return .return-type {
font-style: italic;
color: var(--color-gray-600);
}

.whoops {
display: flex;
justify-content: center;
Expand Down

0 comments on commit 0f9c749

Please sign in to comment.