Last active
June 7, 2019 16:27
-
-
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
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
/* 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