Skip to content

Commit

Permalink
fix(theme): add unit to avoid deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Rotzbua committed Sep 20, 2023
1 parent 9a7a076 commit 24fd018
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/assets/scss/theme/custom/prism-one-light.scss
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ pre > code.diff-highlight .token.token.inserted:not(.prefix) *::selection {
/* Border around popup */
.prism-previewer.prism-previewer:before,
.prism-previewer-gradient.prism-previewer-gradient div {
border-color: hsl(0, 0, 95%);
border-color: hsl(0, 0%, 95%);
}

/* Angle and time should remain as circles and are hence not included */
Expand All @@ -393,11 +393,11 @@ pre > code.diff-highlight .token.token.inserted:not(.prefix) *::selection {

/* Triangles pointing to the code */
.prism-previewer.prism-previewer:after {
border-top-color: hsl(0, 0, 95%);
border-top-color: hsl(0, 0%, 95%);
}

.prism-previewer-flipped.prism-previewer-flipped.after {
border-bottom-color: hsl(0, 0, 95%);
border-bottom-color: hsl(0, 0%, 95%);
}

/* Background colour within the popup */
Expand Down

0 comments on commit 24fd018

Please sign in to comment.