Files
react/packages/react-devtools-shared/src/devtools/views/Tooltip.css
2019-09-09 16:21:04 -07:00

13 lines
326 B
CSS

.Tooltip {
border: none;
border-radius: 0.25rem;
padding: 0.25rem 0.5rem;
font-family: var(--font-family-sans);
font-size: 12px;
background-color: var(--color-tooltip-background);
color: var(--color-tooltip-text);
/* Make sure this is above the DevTools, which are above the Overlay */
z-index: 10000002;
}