minor style fix & comment update

This commit is contained in:
Adam Piontek 2021-04-06 10:59:03 -04:00
parent a8e0b5d45d
commit c1963ff386
1 changed files with 8 additions and 7 deletions

View File

@ -19,19 +19,20 @@
/* Chroma syntax highlighting styles */
@import "chroma";
/* code highlighting */
/*
code highlighting handled by golang chroma
default 'solarized-dark256' css saved in _chroma.css
minor customizations here
*/
pre.chroma {
line-height: 1.5;
padding: 0.75rem 1rem;
border-radius: .5em;
code {
font-family: $font-family-code;
}
color: $gray-300;
}
code.inline {
background-color: #1c1c1c;
color: #8a8a8a;
padding: .2em .5em;
color: $gray-300;
padding: .1em .25em;
border-radius: .25em;
display: inline;
}