I'd like to resize the title bar cause it looks a bit bulky on some applications (e.g.: spotify, vs code, alacritty). I tried creating a gtk.css file as such:
headerbar entry,
headerbar spinbutton,
headerbar button,
headerbar separator {
margin-top: 0px;
margin-bottom: 0px;
}
headerbar {
min-height: 26px;
padding-left: 2px;
padding-right: 2px;
margin: 0px;
padding: 0px;
}
And it works great on the apps but the problem is it makes the file explorer look wonky because the top buttons are so big that I guess it needs the large title bar size. Anyone has a fix for this?