diff --git a/src/components/Application/src/search/AppSearchFooter.vue b/src/components/Application/src/search/AppSearchFooter.vue index c7fcc3b..63b9da4 100644 --- a/src/components/Application/src/search/AppSearchFooter.vue +++ b/src/components/Application/src/search/AppSearchFooter.vue @@ -44,7 +44,7 @@ const { t } = useI18n() padding-bottom: 2px; margin-right: 0.4em; background-color: linear-gradient(-225deg, #d5dbe4, #f8f8f8); - border-radius: 2px; + border-radius: 4px; box-shadow: inset 0 -2px 0 0 #cdcde6, inset 0 0 1px 1px #fff, diff --git a/src/components/Application/src/search/AppSearchModal.vue b/src/components/Application/src/search/AppSearchModal.vue index 5f66b9a..006c977 100644 --- a/src/components/Application/src/search/AppSearchModal.vue +++ b/src/components/Application/src/search/AppSearchModal.vue @@ -224,7 +224,7 @@ function handleClose() { // color: @text-color-base; cursor: pointer; background-color: var(--component-background); - border-radius: 4px; + border-radius: 6px; box-shadow: 0 1px 3px 0 #d4d9e1; > div:first-child, @@ -234,7 +234,6 @@ function handleClose() { } &--active { - color: #fff; .@{prefix-cls}-list__item-enter { opacity: 1; } diff --git a/src/components/Scrollbar/src/Scrollbar.vue b/src/components/Scrollbar/src/Scrollbar.vue index 0676571..81c0630 100644 --- a/src/components/Scrollbar/src/Scrollbar.vue +++ b/src/components/Scrollbar/src/Scrollbar.vue @@ -152,7 +152,7 @@ onBeforeUnmount(() => { right: 2px; bottom: 2px; z-index: 1; - border-radius: 4px; + border-radius: 6px; opacity: 0; transition: opacity 80ms ease; diff --git a/src/components/Upload/src/ThumbUrl.vue b/src/components/Upload/src/ThumbUrl.vue index 5236679..95caa0d 100644 --- a/src/components/Upload/src/ThumbUrl.vue +++ b/src/components/Upload/src/ThumbUrl.vue @@ -20,7 +20,7 @@ defineProps({ position: static; display: block; cursor: zoom-in; - border-radius: 4px; + border-radius: 6px; object-fit: cover; } } diff --git a/src/views/base/profile/index.vue b/src/views/base/profile/index.vue index 44c2b12..5dc3ed1 100644 --- a/src/views/base/profile/index.vue +++ b/src/views/base/profile/index.vue @@ -34,7 +34,7 @@ const tabBarStyle = { width: '220px' } .account-setting { margin: 12px; background-color: var(--component-background); - border-radius: 8px; + border-radius: 6px; .base-title { padding-left: 0; diff --git a/src/views/system/mail/template/template.data.ts b/src/views/system/mail/template/template.data.ts index 0da5a3a..7ec24d0 100644 --- a/src/views/system/mail/template/template.data.ts +++ b/src/views/system/mail/template/template.data.ts @@ -196,7 +196,7 @@ export const baseSendSchemas: FormSchema[] = [ }) return h(ScrollContainer, { innerHTML: content, - style: { border: '1px solid #e8e8e8', borderRadius: '4px', padding: '10px' }, + style: { border: '1px solid #e8e8e8', borderRadius: '6px', padding: '10px' }, }) }, }, diff --git a/src/views/system/notify/template/template.data.ts b/src/views/system/notify/template/template.data.ts index 1bb677e..68f0d06 100644 --- a/src/views/system/notify/template/template.data.ts +++ b/src/views/system/notify/template/template.data.ts @@ -163,7 +163,7 @@ export const baseSendSchemas: FormSchema[] = [ }) return h(ScrollContainer, { innerHTML: content, - style: { border: '1px solid #e8e8e8', borderRadius: '4px', padding: '10px' }, + style: { border: '1px solid #e8e8e8', borderRadius: '6px', padding: '10px' }, }) }, }, diff --git a/src/views/system/sms/template/smsTemplate.data.ts b/src/views/system/sms/template/smsTemplate.data.ts index 27ab3e0..caccafb 100644 --- a/src/views/system/sms/template/smsTemplate.data.ts +++ b/src/views/system/sms/template/smsTemplate.data.ts @@ -193,7 +193,7 @@ export const baseSendSchemas: FormSchema[] = [ }) return h(ScrollContainer, { innerHTML: content, - style: { border: '1px solid #e8e8e8', borderRadius: '4px', padding: '10px' }, + style: { border: '1px solid #e8e8e8', borderRadius: '6px', padding: '10px' }, }) }, },