Skip to content

Commit

Permalink
fix: some color in code block not working as expected (#143)
Browse files Browse the repository at this point in the history
  • Loading branch information
patak-dev committed Nov 24, 2020
1 parent 0c644fc commit da09266
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/client/theme-default/styles/code.css
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ div[class*='language-'] {
}

.highlight-lines .highlighted {
background-color: rgba(0, 0, 0, 66%);
background-color: rgba(0, 0, 0, 0.66);
}

/* Line numbers mode */
Expand All @@ -89,7 +89,7 @@ div[class*='language-'].line-numbers-mode {
line-height: 1.5;
font-size: var(--code-font-size);
padding: var(--code-padding-vertical) 0;
border-right: 1px solid rgba(0,0,0,50%);
border-right: 1px solid rgba(0,0,0,0.5);
z-index: 4;
}

Expand Down

0 comments on commit da09266

Please sign in to comment.