2023-10-09 20:11:16 +08:00
|
|
|
.chat-form {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-form__row {
|
|
|
|
&.-separator {
|
|
|
|
border-bottom: 1px solid var(--primary-low);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-02 21:41:30 +08:00
|
|
|
.chat-form__section {
|
2023-10-09 20:11:16 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
2023-12-19 23:28:07 +08:00
|
|
|
margin-bottom: 2rem;
|
2022-11-02 21:41:30 +08:00
|
|
|
|
2023-10-09 20:11:16 +08:00
|
|
|
&-title {
|
|
|
|
font-weight: 700;
|
|
|
|
font-size: var(--font-down-1);
|
|
|
|
color: var(--primary-medium);
|
2022-11-02 21:41:30 +08:00
|
|
|
}
|
|
|
|
|
2023-10-09 20:11:16 +08:00
|
|
|
&-title + &-content {
|
|
|
|
margin-top: 0.25rem;
|
|
|
|
}
|
2022-11-02 21:41:30 +08:00
|
|
|
|
2023-10-09 20:11:16 +08:00
|
|
|
&-content {
|
|
|
|
gap: 1rem;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-11-02 21:41:30 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-09 20:11:16 +08:00
|
|
|
.chat-form__row {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
2022-11-16 18:10:42 +08:00
|
|
|
|
2023-10-09 20:11:16 +08:00
|
|
|
// background: green;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
2022-11-02 21:41:30 +08:00
|
|
|
|
2023-10-09 20:11:16 +08:00
|
|
|
label,
|
|
|
|
.d-toggle-switch__checkbox-slider {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2022-11-02 21:41:30 +08:00
|
|
|
|
2023-10-09 20:11:16 +08:00
|
|
|
&-action {
|
|
|
|
.chat-form__btn:first-child {
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
}
|
2022-11-02 21:41:30 +08:00
|
|
|
|
2023-10-09 20:11:16 +08:00
|
|
|
&-label + &-action {
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.-link {
|
|
|
|
color: var(--primary);
|
|
|
|
|
|
|
|
.d-icon {
|
|
|
|
color: var(--primary-medium);
|
|
|
|
}
|
2022-11-02 21:41:30 +08:00
|
|
|
}
|
2022-11-16 18:10:42 +08:00
|
|
|
|
2023-10-09 20:11:16 +08:00
|
|
|
&-content {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
gap: 0.25rem;
|
|
|
|
}
|
2022-11-16 18:10:42 +08:00
|
|
|
|
2023-10-09 20:11:16 +08:00
|
|
|
&-description {
|
|
|
|
display: flex;
|
|
|
|
padding-top: 3px;
|
|
|
|
color: var(--primary-medium);
|
|
|
|
font-size: var(--font-down-1);
|
2022-11-16 18:10:42 +08:00
|
|
|
}
|
|
|
|
}
|