We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9fdcd3 commit c1bb064Copy full SHA for c1bb064
packages/chrome/src/components/TabStrip/TabTooltip.tsx
@@ -24,14 +24,15 @@ export function TabTooltip(props: { active: boolean; tab: Tab }) {
24
}
25
TabTooltip.style = css`
26
:scope {
27
+ pointer-events: none;
28
position: absolute;
- top: 2.25em;
29
+ top: calc(var(--tab-height) + 0.25em);
30
left: 0;
31
z-index: 1000;
32
background: var(--popup);
33
border: 1px solid var(--popup_border);
34
border-radius: 4px;
- width: 20em;
35
+ width: 17em;
36
gap: 0.25em;
37
flex-direction: column;
38
display: none;
0 commit comments