1
0
mirror of synced 2026-01-19 09:01:40 -05:00
Files
docs/stylesheets/type.scss
Kevin Heis 46c16001c3 Upgrade Primer with translation shim for trashcan icon (#18735)
* Revert "Revert "Upgrade Primer CSS to 16 (#18713)""

This reverts commit c01d3e302e.

* Add a hack to handle trashcan icon in translated content
2021-04-13 18:38:04 +00:00

45 lines
626 B
SCSS

/* Global type styles
------------------------------------------------------------------------------*/
h1,
h2,
h3,
h4 {
a {
color: var(--color-auto-gray-9);
}
}
summary {
outline: none;
}
.markdown-body {
summary {
h1,
h2,
h3,
h4,
h5,
h6 {
display: inline-block;
margin-top: 10px;
margin-bottom: 10px;
p {
margin: 0;
padding: 0;
}
}
}
}
// all h3 headers that are links should be blue-500
// except those on each product's toc
h3 a {
color: var(--color-auto-blue-5);
.directory-toc & {
color: var(--color-auto-gray-9);
}
}