Skip to content

Instantly share code, notes, and snippets.

@deltabeard
Last active June 7, 2019 16:27
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 deltabeard/96daea8d6e5b11ed520745020f4873bc to your computer and use it in GitHub Desktop.
Save deltabeard/96daea8d6e5b11ed520745020f4873bc to your computer and use it in GitHub Desktop.
CSS to remove PRO badge on GitHub: Because who gives a shit if you have a PRO account
/* Hide PRO badge on hover card. */
div.d-block.f6.bg-purple.no-underline.text-bold.text-uppercase.text-white.text-center {
visibility: hidden;
}
/* Hide PRO badge on profile page, and remove large space when PRO badge is hidden. */
div.border-top.border-gray-light.py-3.js-pro-badge {
visibility: hidden;
height: 0;
overflow: visible;
padding-bottom: 0px !important;
padding-top: 0px !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment