Removes the titlebar that appeared after the 2025 Discord redesign.
Discord No titlebar by jugami1

Details
Authorjugami1
LicenseNo License
Categorydiscord.com
Created
Updated
Code size1.3 kB
Code checksumc69bae00
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Discord No titlebar
@version 1.0.2
@namespace github.com/openstyles/stylus
@description Removes the titlebar that appeared after the 2025 Discord redesign.
@author jugami1
==/UserStyle== */
@-moz-document domain("discord.com") {
/* remove the titlebar */
:root {
--custom-app-top-bar-height: 0 !important;
}
.bar_c38106 {
position: absolute;
top: 0;
right: 0;
width: auto;
min-height: var(--custom-channel-header-height);
padding: 0 var(--space-12) !important;
z-index: 1000;
}
.title_c38106 {
display: none;
}
.upperContainer__9293f {
margin-right: calc(6 * var(--space-12));
padding-right: var(--space-16);
}
.headerBar__8a7fc {
padding-right: calc((7 * var(--space-12) + 16px));
}
.visual-refresh .wrapper_ef3116 {
margin-top: var(--space-xs);
}
.visual-refresh .searchBar__97492 {
width: 165px;
}
.visual-refresh .sidebarList_c48ade,
.visual-refresh .chat_f75fb0[data-has-border=true],
.visual-refresh .container__133bf,
.visual-refresh .container_f391e3,
.visual-refresh .homeWrapper__0920e,
.visual-refresh .shop__6db1d {
border-top: none;
}
.visual-refresh .sidebarListRounded_c48ade {
border-top-left-radius: 0;
}
}