Created
February 17, 2023 03:58
-
-
Save d9k/e85e08b17fc79b080cb81b8e9a113a65 to your computer and use it in GitHub Desktop.
This file contains 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
/* | |
see | |
https://marketplace.visualstudio.com/items?itemName=be5invis.vscode-custom-css | |
*/ | |
/* | |
https://stackoverflow.com/questions/47266613/vscode-hide-top-right-icons/69788835#comment133175034_69788835 | |
*/ | |
.tabs-and-actions-container .editor-actions { | |
display: flex !important; | |
position: absolute; | |
top: 25px; | |
right: 0; | |
z-index: 10; | |
background-color: inherit; | |
} | |
.title.tabs.show-file-icons { | |
overflow: unset !important; | |
} | |
.tabs-and-actions-container .editor-actions .action-item a { | |
font-size: 13px; | |
} | |
.tabs-and-actions-container .editor-actions .action-item .codicon { | |
width: 13px; | |
height: 13px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment