Last active
March 7, 2025 14:44
-
-
Save daanta-real/01948bcd316df50d4681195fca78cd94 to your computer and use it in GitHub Desktop.
CSS stylesheet forced replacement injection source snippet
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
document.head.appendChild(Object.assign(document.createElement('style'), { innerHTML: ` | |
/*********************************************/ | |
/* PUT YOUR ADDITIONAL CUSTOM CSS STYLESHEET */ | |
/* HERE AS WHATEVER YOU WANT. START */ | |
/*********************************************/ | |
body.android .photoFrame .smileCnt i.smile { | |
top:0.05em; | |
} | |
.photoFrame .smileCnt .smileCntTxt { | |
transform:scale(1.25) translateY(-0.1em); | |
} | |
/*********************************************/ | |
/* PUT YOUR ADDITIONAL CUSTOM CSS STYLESHEET */ | |
/* HERE AS WHATEVER YOU WANT. END */ | |
/*********************************************/ | |
` })); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment