Skip to content

Instantly share code, notes, and snippets.

@nurupo
Last active February 3, 2023 21:59
Show Gist options
  • Save nurupo/4d87d0bac86ffd80f040c9893d7fc2bb to your computer and use it in GitHub Desktop.
Save nurupo/4d87d0bac86ffd80f040c9893d7fc2bb to your computer and use it in GitHub Desktop.
Fix GitHub June Redesign

Fix GitHub June Redesign

An attempt to make GitHub's June redesing more bearable.

Usage

Install the Stylus browser extension (Chrome Firefox) and add the user style into it.

Screenshots

Before After
Before After
Before After
/* ==UserStyle==
@name Fix GitHub June Redesign
@namespace https://github.com/nurupo
@version 0.0.1
@description An attempt to make GitHub's June redesing more bearable
@author nurupo
@homepageURL https://gist.github.com/nurupo/4d87d0bac86ffd80f040c9893d7fc2bb
@license 0BSD
==/UserStyle== */
@-moz-document regexp("https://(gist\\.)?github\\.com/.*") {
.avatar-user {
border-radius: 3px!important;
}
@media (min-width: 1012px) {
.repository-content {
width: 1012px!important;
margin: 0 auto;
}
.pagehead {
padding-left: calc(50% - 606px)!important;
padding-right: calc(50% - 606px)!important;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment