Skip to content

Commit

Permalink
Make incorrect code blocks higher contrast
Browse files Browse the repository at this point in the history
  • Loading branch information
TrialDragon committed Feb 16, 2024
1 parent 2e21516 commit bcb98a1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions sass/components/_syntax-theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,16 @@
}

div.incorrect {
$incorrect_block_background_color: #481e21;
position: relative;
background-color: #542326;
background-color: $incorrect_block_background_color;
border-left: 10px solid darkred;
border-radius: 10px;
padding-right: 55px;

.z-code,
.z-code code {
background-color: #542326;
background-color: $incorrect_block_background_color;
}
}

Expand Down

0 comments on commit bcb98a1

Please sign in to comment.