Skip to content

Instantly share code, notes, and snippets.

@LunarTwilight
Last active July 18, 2023 01:22
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 LunarTwilight/1651ec4fca91ae525365863f4d901e8b to your computer and use it in GitHub Desktop.
Save LunarTwilight/1651ec4fca91ae525365863f4d901e8b to your computer and use it in GitHub Desktop.
/* ==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