vscode-fluent-ui
vscode-fluent-ui copied to clipboard
termianl tabs cut off
I can't select the third terminal from the terminal tabs.
Happens in both right and left positions.
Is there any temporary solution for this?
.tabs-container {
height: 32px !important;
}
This style was causing the problem, it can be fixed temporarily by injecting custom css with another extension (I'm using vibrancy with fluent ui)
.tabs-container.has-text {
height: auto !important;
}
This setting was able to preserve the styles of other elements as it only affects the terminal tabs which containes the .has-text
class