Last active
January 12, 2022 15:49
-
-
Save Sainan/6e3994984674182e4f00460662dca07c to your computer and use it in GitHub Desktop.
Discord UserCSS: Custom Sticker Size
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
/*************************** | |
* Custom Sticker Size v1.0 * | |
* https://git.io/Jc2tR * | |
***************************/ | |
:root { | |
--sticker-size: 64px; | |
/* 48px is what big emojis have, but | |
64px looks better as stickers usually have more detail. | |
You decide, tho. */ | |
} | |
[class^="assetWrapper"][style="height: 160px; width: 160px;"] | |
{ | |
height: var(--sticker-size) !important; | |
width: var(--sticker-size) !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment