Last active
November 9, 2017 18:42
-
-
Save pgebheim/68f408aa76ad07e164a3dab4b75d5ac1 to your computer and use it in GitHub Desktop.
This file contains 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
(function() { | |
var el = document.createElement('style'); | |
el.innerText = " \ | |
.theme-dark .message-group .comment .markup { color: hsla(0,0%,100%,1); } \ | |
.theme-light .message-group .comment .markup { color: black !important } \ | |
.message-group { border-bottom: none; padding: 10px 0; } \ | |
"; | |
document.body.appendChild(el); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment