* Package updates * Fix up things that look broken * Add to utils * Lead now just sets font size, just use f3 where needed * Update package-lock.json * Update index.tsx * Delete bump-link.scss * Update trigger-error.js * Update components/GenericError.tsx Co-authored-by: Ash Guillaume <10384315+ashygee@users.noreply.github.com> * Update ArticlePage.tsx * Update ActionBar.tsx * Changes from meeting * Found a few more monos * Fix from a merge conflict * Missed a few f3s * Update SubLandingHero.tsx * Bye gradients * Match up breadcrumbs * Update SubLandingHero.tsx * Update lists.scss Co-authored-by: Ash Guillaume <10384315+ashygee@users.noreply.github.com>
27 lines
315 B
SCSS
27 lines
315 B
SCSS
.markdownBody {
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5 {
|
|
padding-top: 16px;
|
|
}
|
|
h2 {
|
|
font-size: 1.25em;
|
|
}
|
|
|
|
// all h2 headers that are links should be blue-500
|
|
h2 a {
|
|
color: var(--color-auto-blue-5);
|
|
}
|
|
h3 {
|
|
font-size: 1em;
|
|
}
|
|
h4 {
|
|
font-size: 0.875em;
|
|
}
|
|
h5 {
|
|
font-size: 0.85em;
|
|
}
|
|
}
|