iep-ui
Version:
An enterprise-class UI design language and Vue-based implementation
25 lines (24 loc) • 500 B
CSS
.tooltips {
height: 100%;
background: transparent ;
box-shadow: none ;
border: none ;
}
.tooltips .chart-val-box {
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
position: relative;
}
.tooltips .chart-val {
border-radius: 30px;
padding: 0 10px;
color: #333;
box-shadow: rgba(0, 0, 0, 0.2) 1px 2px 10px;
}
.tooltips .chart-val:last-child {
position: absolute;
top: 50%;
transform: translateY(-50%);
}