Skip to content

Instantly share code, notes, and snippets.

@sebastian-meier
Created May 10, 2019 08:39
Show Gist options
  • Save sebastian-meier/b87562751ae3ac348271a0bb07c29ff8 to your computer and use it in GitHub Desktop.
Save sebastian-meier/b87562751ae3ac348271a0bb07c29ff8 to your computer and use it in GitHub Desktop.
Change Twitter Fonts
/* OLD TWITTER UI */
.tweet-text {
font-family:"BLOKK Neue" !important;
}
.tweet-text a,
.tweet-text a *{
font-family:"Helvetica Neue",Helvetica,Arial,sans-serif !important;
}
/* NEW TWITTER UI - This also destroys many other react sites :) */
#react-root *{
font-family:"BLOKK Neue" !important;
}
#react-root a,
#react-root a *{
font-family:system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment