1
0
mirror of synced 2026-01-28 18:03:28 -05:00
Files
docs/components/ui/MarkdownContent/stylesheets/headers.scss
Kevin Heis 567652b0e3 Primer 18 b (#22462)
* Create migrate-colors-primer-18.js

* Update colors round 1

* upgrade primer packages

* Update index.scss

* Replace auto colors

* remove btn-primary-matte

* Turns out the class names and variables names DONT LINE UP... ugh....

* Check for allowed var colors
2021-10-28 19:17:23 +00:00

27 lines
313 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-accent-fg);
}
h3 {
font-size: 1em;
}
h4 {
font-size: 0.875em;
}
h5 {
font-size: 0.85em;
}
}