You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
599 B
28 lines
599 B
.tooltipContainer {
|
|
z-index: 1000;
|
|
background-color: rgba(0, 0, 0, 0.4);
|
|
position: absolute;
|
|
top: 30rpx;
|
|
color: white;
|
|
font-size: 20rpx;
|
|
border-radius: 6rpx;
|
|
.tooltip {
|
|
display: flex;
|
|
padding: 6rpx 16rpx;
|
|
justify-content: flex-start;
|
|
&:first-child {
|
|
padding-top: 10rpx;
|
|
}
|
|
&:last-child {
|
|
padding-bottom: 10rpx;
|
|
}
|
|
.color {
|
|
margin-right: 8rpx;
|
|
display: inline-block;
|
|
height: 22rpx;
|
|
width: 22rpx;
|
|
border-radius: 50%;
|
|
background-color: black;
|
|
}
|
|
}
|
|
}
|