1
0
mirror of synced 2025-12-30 12:02:01 -05:00
Files
docs/stylesheets/extended-markdown.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

31 lines
402 B
SCSS

.extended-markdown {
.note,
.tip,
.warning,
.danger {
// remove extra space under lists inside of notes
ul,
ol {
margin-bottom: 0;
}
}
p {
margin: 0;
}
p:not(:first-child) {
margin-top: 15px;
}
&.note pre code {
color: var(--color-fg-default);
}
&.note pre {
background: none;
padding: 10px 10px 10px 0;
margin-bottom: 0;
}
}