Created
March 30, 2023 15:08
-
-
Save tsmacdonald/c76f7ccf52a2c9e807400159d49f53d6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Dark Mode */ | |
.diff.line .line.wrapper, .diff.line .empty.line.wrapper .hljs { | |
background-color: #f2f2f2; | |
} | |
/* Line Numbers */ | |
div[data-line-number]:not([data-line-number="0"]):before { | |
content:attr(data-line-number); | |
position:absolute; | |
color: #444; | |
padding: 1px 3px 3px; | |
font-size: x-small; | |
display: block; | |
width: 20px; | |
text-align: right; | |
} | |
div[data-line-number]:not([data-line-number="0"]) div.hljs { | |
margin-left: 26px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment