Last active
July 18, 2023 01:22
-
-
Save LunarTwilight/1651ec4fca91ae525365863f4d901e8b to your computer and use it in GitHub Desktop.
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
/* ==UserStyle== | |
@name Steam redesign fixes | |
@namespace github.com/openstyles/stylus | |
@version 1.0.4 | |
@description Fixes issues with Steam's new redesign | |
@author LunarTwilight | |
@updateURL https://gist.github.com/LunarTwilight/1651ec4fca91ae525365863f4d901e8b/raw/steam-redesign-fixes.user.css | |
==/UserStyle== */ | |
@-moz-document domain("steamcommunity.com"), domain("store.steampowered.com") { | |
/* Snug the logo up to the top of the screen */ | |
#global_header .logo { | |
padding-top: 5px !important; | |
} | |
/* Snug the menu up to the top of the screen */ | |
#global_header .menuitem { | |
padding-top: 18px !important; | |
} | |
/* Make the header shorter */ | |
#global_header .content { | |
height: 55px !important; | |
} | |
/* Middle align the avatar */ | |
#global_actions .user_avatar { | |
margin-top: 3px; | |
} | |
/* Middle align the dropdown and notification button */ | |
#global_action_menu { | |
padding-top: 9px; | |
} | |
/* Hide the "Install Steam" button and wallet amount */ | |
#header_wallet_ctn, | |
.header_installsteam_btn { | |
display: none; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment