Skip to content

Commit

Permalink
fix: make font-weight consistent in mdx components
Browse files Browse the repository at this point in the history
  • Loading branch information
jeangovil committed Jul 17, 2023
1 parent c80a09b commit b043a9b
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
.mdx-cta-button {
.lsd-button--large {
@include lsd.typography('label2');
font-weight: 100 !important;
padding: 5px 11px;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,12 @@
margin-top: 3rem;
}

.mdx-feature-list__feature-title,
.mdx-feature-list__feature-index,
.mdx-feature-list__feature-description {
font-weight: 100 !important;
}

.mdx-feature-list__feature-inner {
}

Expand All @@ -162,4 +168,8 @@
}
}
}

.mdx-feature-list__title {
font-weight: 100 !important;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,10 @@

@include utils.responsive('lg', 'down') {
.mdx-hero-description {
margin-top: 12px;
@include lsd.typography('subtitle1');

margin-top: 12px;
font-weight: 100 !important;
}

.mdx-hero-description--large {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@

h2 {
@include lsd.typography('body1');
font-weight: 100 !important;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@

.mdx-showcase__item-name {
@include lsd.typography('h6');
font-weight: 100 !important;
}

.mdx-showcase__item-description {
Expand Down

0 comments on commit b043a9b

Please sign in to comment.