mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-10 11:07:06 +00:00
* [feature](webapp) add drill down dimensions and metric period compare and modify layout * [feature](webapp) add drill down dimensions and metric period compare and modify layout --------- Co-authored-by: williamhliu <williamhliu@tencent.com>
36 lines
633 B
Plaintext
36 lines
633 B
Plaintext
.recommendQuestions {
|
|
display: flex;
|
|
|
|
.recommendQuestionsMsg {
|
|
padding: 12px 20px 20px !important;
|
|
|
|
.title {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.content {
|
|
display: flex;
|
|
align-items: center;
|
|
column-gap: 16px;
|
|
row-gap: 20px;
|
|
|
|
.question {
|
|
padding: 0 6px;
|
|
height: 22px;
|
|
line-height: 22px;
|
|
font-size: 12px;
|
|
color: var(--text-color);
|
|
border-radius:11px;
|
|
background-color: #f4f4f4;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
color: var(--chat-blue);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|