Skip to content

Commit

Permalink
Update code.scss
Browse files Browse the repository at this point in the history
Fix mmistakes#417

- Avoid appearance of dark border around visited code links in Safari.
  • Loading branch information
pdmosses committed Sep 29, 2020
1 parent 76f8f06 commit 2e377e4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions _sass/code.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ code {
border-radius: $border-radius;
}

// Avoid appearance of dark border around visited code links in Safari
a:visited code {
border-color: $border-color;
}

// Content structure for highlighted code blocks using fences or Liquid
//
// ```[LANG]...```, no kramdown line_numbers:
Expand Down

0 comments on commit 2e377e4

Please sign in to comment.