Created
November 24, 2022 12:54
-
-
Save Veticia/68a3197c9980a124186cb9ce861f1bae to your computer and use it in GitHub Desktop.
Tweaks to increase emojis size in a mastodon instance
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
// ==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