@clinic/heap-profiler
Version:
Programmable interface to Clinic.js Heap Profiler
33 lines (28 loc) • 571 B
CSS
.tooltip {
position: fixed;
z-index: 9;
}
.tooltip .tooltip-default-message{ /* Temporary style, will be replaced */
padding: 0.2em 0.5em;
font-size: var(--small-text-size);
background-color: rgb(214, 214, 214);
color: #333;
width: 33vw;
max-width: 230px;
border-radius: 3px;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
opacity: 0.85;
display: block;
}
.tooltip.hidden {
visibility: hidden;
display: block;
}
.tooltip .tooltip-inner {
position: absolute;
top: 0px;
}
.tooltip .tooltip-inner.top {
top: auto;
bottom: 0px;
}