Created
December 5, 2022 19:56
-
-
Save jakejarvis/1b189fc798e15d1b3a73910c424f31d9 to your computer and use it in GitHub Desktop.
Mastodon custom CSS overrides in admin panel
This file contains 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
/* override weird Mastodon font with default system stack */ | |
body { | |
font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, "mastodon-font-sans-serif", sans-serif !important; | |
} | |
/* hide create account buttons (just for aesthetics, NOT security!) */ | |
.columns-area__panels .navigation-panel .navigation-panel__sign-in-banner .sign-in-banner button:last-of-type, | |
.ui__header .ui__header__links a.button[href^="https://joinmastodon.org"] { | |
display: none !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment