minor style fix & comment update

This commit is contained in:
Adam Piontek 2021-04-06 10:59:03 -04:00
parent a8e0b5d45d
commit c1963ff386

View file

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