@striven-erp/striven-tooltip
Version:
Striven Tooltips UI
36 lines (32 loc) • 620 B
CSS
.s-tooltip {
font-family: 'Segoe UI';
background-color: #fff;
color: #000;
line-height: 1.4;
font-size: 14px;
border: 1px solid rgba(0, 0, 0, 0.2);
position: absolute;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
opacity: 0;
transition: opacity 500ms;
height: fit-content;
width: fit-content;
padding: 10px;
z-index: 1;
text-align: center;
}
.s-tooltip-show {
opacity: 1;
}
.s-tooltip-stem {
position: absolute;
background-color: #fff;
height: 11px;
width: 10px;
}
.s-tooltip-content {
min-width: 250px;
user-select: none;
text-decoration: center;
font-weight: normal;
}