* feat: Modify the color of the svg icon in the header according to the selected state * feat: add translation icon to header * feat: shorten the route length of the knowledge base * feat: extract routing information from the knowledge base into constants
52 lines
874 B
Plaintext
52 lines
874 B
Plaintext
.tag {
|
|
height: 40px;
|
|
padding: 0 30px;
|
|
margin: 0 5px;
|
|
border: 1px solid #000;
|
|
border-radius: 10px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.checked {
|
|
color: #1677ff;
|
|
border-color: #1677ff;
|
|
}
|
|
|
|
.appIcon {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.appName {
|
|
vertical-align: middle;
|
|
font-family: Inter;
|
|
font-size: 14px;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
line-height: 20px;
|
|
}
|
|
|
|
.radioGroup {
|
|
& > label {
|
|
height: 40px;
|
|
line-height: 40px;
|
|
border: 0 !important;
|
|
background-color: rgba(249, 249, 249, 1);
|
|
font-weight: @fontWeight700;
|
|
font-family: 'Nunito Sans';
|
|
color: rgba(29, 25, 41, 1);
|
|
&::before {
|
|
display: none !important;
|
|
}
|
|
}
|
|
:global(.ant-radio-button-wrapper-checked) {
|
|
border-radius: 6px !important;
|
|
}
|
|
}
|
|
|
|
.ant-radio-button-wrapper-checked {
|
|
border-radius: 6px !important;
|
|
}
|
|
.radioButtonIcon {
|
|
vertical-align: middle;
|
|
}
|