Hide activity feed on GitHub homepage
Hide GitHub Activity Feed by overflowcat
Details
Authoroverflowcat
LicensePublic Domain
Categorygithub.com
Created
Updated
Code size1.1 kB
Code checksumb9fe394c
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name github.com - 2023/5/14 23:56:29
@namespace github.com/openstyles/stylus
@version 1.0.0
@description Hide GitHub Feed
@author OverflowCat
==/UserStyle== */
@-moz-document url("https://github.com/") {
main,
div[aria-label="Explore repositories"] {
display: none;
}
aside[aria-label="Account"] {
width: 100vw!important;
max-width: 100vw!important;
display: block!important;
}
aside[aria-label="Account"] + div {
display: none;
}
}
div.dashboard-sidebar {
overflow-y: hidden!important;
}
div[data-target="loading-context.details"] {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: auto auto;
grid-gap: 12px;
}
loading-context > div > div:nth-child(2) {
grid-column: 1 / 2;
grid-row: 1 / 2;
}
h2.mt-md-4 {
margin-top: 0px!important;
}
div[data-target="loading-context.details"] + div {
grid-column: 2 / 3;
grid-row: 1 / 2;
}
div#dashboard-user-teams {
display: none!important;
}