28 lines
484 B
SCSS
28 lines
484 B
SCSS
.flex {
|
|
&-row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
&-column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
.custom-tooltip-container{
|
|
border-radius: 8px !important;
|
|
padding: 6px 16px 6px 8px !important;
|
|
background-color: rgba(0,0,0,0.7) !important;
|
|
backdrop-filter: blur(8px) !important;
|
|
& span{
|
|
width: 8px !important;
|
|
height: 8px !important;
|
|
vertical-align: middle;
|
|
margin-top: -4px;
|
|
}
|
|
}
|
|
.custom-echarts-tips {
|
|
color: #fff;
|
|
}
|
|
|