Skip to content

Commit

Permalink
fix: fix FeatureList layout
Browse files Browse the repository at this point in the history
  • Loading branch information
jeangovil committed Jul 10, 2023
1 parent 3006a25 commit 4e2f413
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,23 @@

.mdx-feature-list__feature {
border-top: 1px solid rgb(var(--lsd-border-primary));
min-height: 332px;
}

.mdx-feature-list__feature-inner {
display: flex;
flex-direction: column;
}

.mdx-feature-list__feature-title {
margin-top: 1rem;
}

.mdx-feature-list__feature-description {
margin-top: 8.625rem;
flex: 1 0;
display: flex;
flex-direction: column;
justify-content: flex-end;
}

.mdx-feature-list__extra {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const FeatureList: React.FC<FeatureListProps> = ({
component="h3"
className="mdx-feature-list__feature-description"
>
{feature.description}
<span>{feature.description}</span>
</Typography>
</div>
<div className="mdx-feature-list__feature-border"></div>
Expand Down

0 comments on commit 4e2f413

Please sign in to comment.