The global button:hover shadow in buttons.css (0 12px 18px rgba(0, 0, 0, 0.2)) is too large for the terminal tab buttons and gets clipped by the terminal panel container.
Potential fix
Override the hover shadow on .terminal-tab in terminal.css with a smaller value:
.terminal-tab:hover:not(:disabled) {
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
