Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save s-zeid/4502b4dd5f43f30fc30985a14b2b19f7 to your computer and use it in GitHub Desktop.
Save s-zeid/4502b4dd5f43f30fc30985a14b2b19f7 to your computer and use it in GitHub Desktop.
Facebook Messenger - Make stickers larger
/* ==UserStyle==
@name Facebook Messenger - Make stickers larger
@namespace github.com/openstyles/stylus
@version 1.0.0
@license 0BSD
@var text u-size "Size" 160px
==/UserStyle== */
@-moz-document domain("www.messenger.com") {
[role="main"] [role="grid"] [data-scope="messages_table"] [aria-label*="sticker"] {
width: var(--u-size) !important; height: var(--u-size) !important;
background-size: contain !important;
background-position: bottom !important;
}
}
@-moz-document domain("www.facebook.com") {
[data-testid="mwchat-tab"] [data-scope="messages_table"] [aria-label*="sticker"] {
width: var(--u-size) !important; height: var(--u-size) !important;
background-size: contain !important;
background-position: bottom !important;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment