Last active
January 7, 2025 08:00
-
-
Save monotykamary/b00fcd6369aad47c8ea8545f6ae42538 to your computer and use it in GitHub Desktop.
Custom VSCode CSS with Ayu Mirage
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Main font family customization for core UI elements */ | |
.monaco-workbench *:not(.codicon) { | |
font-family: 'IBM Plex Mono', monospace !important; | |
} | |
/* Set specific font size for list elements */ | |
.monaco-list-row, | |
.monaco-list-rows { | |
font-size: 12px; | |
} | |
/* Remove background and border from command center */ | |
.monaco-workbench .part.titlebar>.titlebar-container>.titlebar-center>.window-title>.command-center .action-item.command-center-center { | |
background: none; | |
border: none; | |
} | |
/* Hide search icon in action bar */ | |
.monaco-action-bar * span.codicon.codicon-search.search-icon, | |
.monaco-workbench .part.titlebar>.titlebar-container>.titlebar-center>.window-title>.command-center>.monaco-toolbar>.monaco-action-bar>.actions-container>.action-item.monaco-dropdown-with-primary .action-label, .monaco-workbench .part.titlebar>.titlebar-container>.titlebar-center>.window-title>.command-center>.monaco-toolbar>.monaco-action-bar>.actions-container>.action-item>.action-label { | |
display: none; | |
} | |
.breadcrumbs-below-tabs .breadcrumbs-control { | |
padding: 10px 30px; | |
} |
Author
monotykamary
commented
Dec 31, 2024
•


Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment