Skip to content

Instantly share code, notes, and snippets.

@Veticia
Created November 24, 2022 12:54
Show Gist options
  • Save Veticia/68a3197c9980a124186cb9ce861f1bae to your computer and use it in GitHub Desktop.
Save Veticia/68a3197c9980a124186cb9ce861f1bae to your computer and use it in GitHub Desktop.
Tweaks to increase emojis size in a mastodon instance
// ==UserScript==
// @name mastodon tweaks
// @include https://eldritch.cafe/*
// @grant GM_addStyle
// @run-at document-start
// ==/UserScript==
GM_addStyle ( `
/* bigger emojis */
.status__content .emojione {
width: 32px !important;
height: 32px !important;
}
/* ...and dont clip them on the top of posts */
.status__content .e-content, .status__content .status__content__text {
padding-top: 5px !important;
}
.status__content {
margin: 5px 0 !important;
}
` );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment