vscode-fluent-ui
vscode-fluent-ui copied to clipboard
"Source Control" and "Run and Debug" tabs shifts the sidebar
Before:
After:
The issue was that the title was moving upward. To address this, I tried various approaches, including using position: relative;/absolute;,
but this didn't guarantee a consistent fix. Consequently, using display: flex;
proved to be an excellent solution as it prevented one element from overlapping another, providing a more reliable and effective resolution.