Skip to content

Commit

Permalink
Remove background color from code shortcode
Browse files Browse the repository at this point in the history
Background color is not necessary with Chroma.css
  • Loading branch information
budparr authored and bep committed Sep 30, 2017
1 parent dcb0998 commit 05aaee8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion layouts/shortcodes/code.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{{ $file := .Get "file" }}
{{ $isHTML := strings.HasSuffix $file "html" }}
<div class="code relative bg-primary-color" id="{{ $file | urlize}}">
<div class="code relative" id="{{ $file | urlize}}">
{{- with $file -}}
<div class="filename san-serif f6 dib lh-solid pl2 pv2">{{.}}</div>
{{- end -}}
Expand Down

0 comments on commit 05aaee8

Please sign in to comment.