Skip to content

Remove Discord top name bar by pomelo

Details

Authorpomelo

LicenseNo License

Categorydiscord.com

Created

Updated

Code size665 B

Code checksum4317b43e

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

Removes the bar from top of the window with duplicate guild name

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name           Remove Discord top name bar
@namespace      github.com/openstyles/stylus
@version        1.0.0
@description    Removes the bar from top of the window with duplicate guild name
@author         ananas
==/UserStyle== */

@-moz-document domain("discord.com") {
    div[class^='layer'] > div[class*='container'] > div[class*='base'] {
	    grid-template-rows: [top] min-content [titleBarEnd] min-content [noticeEnd] 1fr [end] !important;
    }
    
    div[class*='content'] > div[class^='sidebar'] > div[class*='wrapper'] {
        padding-top: 8px;
    }
    
    div[class^='base'] > div[class*='bar'] {
        display: none;
    }
}

Reviews

No reviews yet.