Skip to content

Instantly share code, notes, and snippets.

View rexydye's full-sized avatar
🎯
Focusing

rexydye

🎯
Focusing
  • Yekaterinburg, Russian Federation
View GitHub Profile
@rexydye
rexydye / gradient.md
Created January 2, 2024 09:54
Add titlebar gradient to VS Code like in intelij idea / other jetbrains IDE
  1. Install this extension: Custom CSS and JS Loader
  2. Create vscodestyle.css file somewhere on your system with this content:
.monaco-workbench .part.titlebar {
  position: relative;
}
.monaco-workbench .part.titlebar::before {
  content: "";
  position: absolute;
 top: 50%;