15 lines
173 B
SCSS
15 lines
173 B
SCSS
.flex {
|
|
&-row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
&-column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
.custom-echarts-tips {
|
|
color: #fff;
|
|
}
|