Skip to content

Commit

Permalink
Fix invalid default padding value (google#162)
Browse files Browse the repository at this point in the history
  • Loading branch information
aomarks authored Jun 4, 2021
1 parent 8468e8a commit f659973
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion playground-styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@
}
.CodeMirror pre.CodeMirror-line,
.CodeMirror pre.CodeMirror-line-like {
padding: var(--playground-code-line-padding, '0 4px'); /* Horizontal padding of content */
padding: var(
--playground-code-line-padding,
0 4px
); /* Horizontal padding of content */
}

.CodeMirror-scrollbar-filler,
Expand Down

0 comments on commit f659973

Please sign in to comment.