|
|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <div v-if="is_label_item" :class="item_klass">
|
|
|
+ <div v-if="is_label_item" :class="item_klass" class="history-block-title">
|
|
|
<template v-if="history.client_field_timestamp_type === 'today'">{{ $t('conversation.history_today') }}</template>
|
|
|
<template v-if="history.client_field_timestamp_type === 'month'">{{ $t('conversation.history_month') }}</template>
|
|
|
<template v-if="history.client_field_timestamp_type === 'earlier'">{{
|
|
|
@@ -148,8 +148,10 @@ const handleDeleteSuccess = () => {
|
|
|
<style lang="css" scoped>
|
|
|
.conversation-history-section-title {
|
|
|
font-size: 20px;
|
|
|
- font-weight: bold;
|
|
|
- margin-top: 16px;
|
|
|
+ font-weight: 500;
|
|
|
+ line-height: 28px;
|
|
|
+
|
|
|
+ margin-top: 26px;
|
|
|
margin-bottom: 16px;
|
|
|
color: var(--color-text-1);
|
|
|
}
|
|
|
@@ -164,7 +166,7 @@ const handleDeleteSuccess = () => {
|
|
|
.conversation-history-section-data {
|
|
|
background-color: var(--color-bg-1);
|
|
|
padding: 20px 20px 20px 20px;
|
|
|
- border-radius: 15px;
|
|
|
+ border-radius: 12px;
|
|
|
margin-top: 10px;
|
|
|
margin-bottom: 10px;
|
|
|
|
|
|
@@ -222,6 +224,9 @@ const handleDeleteSuccess = () => {
|
|
|
text-align: center;
|
|
|
}
|
|
|
.history-item-time {
|
|
|
+ font-size: 14px;
|
|
|
+ font-weight: 400;
|
|
|
+ line-height: 19.6px;
|
|
|
}
|
|
|
.history-item-delete {
|
|
|
display: none;
|