main
css 13 lines 373 Bytes
Raw
1 .Tooltip {
2 border: none;
3 border-radius: 0.25rem;
4 padding: 0.25rem 0.5rem;
5 font-family: var(--font-family-sans);
6 font-size: 12px;
7 background-color: var(--color-tooltip-background);
8 color: var(--color-tooltip-text);
9 box-shadow: 1px 1px 2px var(--color-shadow);
10
11 /* Make sure this is above the DevTools, which are above the Overlay */
12 z-index: 10000002;
13 }