vscode-fluent-ui icon indicating copy to clipboard operation
vscode-fluent-ui copied to clipboard

termianl tabs cut off

Open anwar3606 opened this issue 1 year ago • 1 comments

I can't select the third terminal from the terminal tabs. image


Happens in both right and left positions.

Is there any temporary solution for this?

anwar3606 avatar Jul 24 '23 19:07 anwar3606

.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

yuckyh avatar Aug 12 '23 19:08 yuckyh