Skip to content

Instantly share code, notes, and snippets.

@Sainan
Last active January 12, 2022 15:49
Show Gist options
  • Save Sainan/6e3994984674182e4f00460662dca07c to your computer and use it in GitHub Desktop.
Save Sainan/6e3994984674182e4f00460662dca07c to your computer and use it in GitHub Desktop.
Discord UserCSS: Custom Sticker Size
/***************************
* 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