diff --git a/src/components/Application/src/AppLogo.vue b/src/components/Application/src/AppLogo.vue index c40adf3..c1917db 100644 --- a/src/components/Application/src/AppLogo.vue +++ b/src/components/Application/src/AppLogo.vue @@ -54,7 +54,7 @@ function goHome() { transition: all 0.2s ease; &.light { - border-bottom: 1px solid @border-color-base; + border-bottom: 1px solid var(--border-color); } &.collapsed-show-title { diff --git a/src/components/Application/src/search/AppSearchFooter.vue b/src/components/Application/src/search/AppSearchFooter.vue index f373650..c7fcc3b 100644 --- a/src/components/Application/src/search/AppSearchFooter.vue +++ b/src/components/Application/src/search/AppSearchFooter.vue @@ -30,9 +30,9 @@ const { t } = useI18n() height: 44px; padding: 0 16px; font-size: 12px; - color: #666; - background-color: @component-background; - border-top: 1px solid @border-color-base; + color: var(--text-color); + background-color: var(--component-background); + border-top: 1px solid var(--border-color); border-radius: 0 0 16px 16px; &-item { diff --git a/src/components/Application/src/search/AppSearchModal.vue b/src/components/Application/src/search/AppSearchModal.vue index a6534e0..c1bcd4a 100644 --- a/src/components/Application/src/search/AppSearchModal.vue +++ b/src/components/Application/src/search/AppSearchModal.vue @@ -163,7 +163,7 @@ function handleClose() { flex-direction: column; width: 632px; margin: 0 auto auto; - background-color: @component-background; + background-color: var(--component-background); border-radius: 16px; box-shadow: 0 25px 50px -12px rgb(0 0 0 / 25%); } @@ -223,7 +223,7 @@ function handleClose() { font-size: 14px; color: @text-color-base; cursor: pointer; - background-color: @component-background; + background-color: var(--component-background); border-radius: 4px; box-shadow: 0 1px 3px 0 #d4d9e1; diff --git a/src/components/CardList/src/CardList.vue b/src/components/CardList/src/CardList.vue index 03fc70d..ccaa125 100644 --- a/src/components/CardList/src/CardList.vue +++ b/src/components/CardList/src/CardList.vue @@ -103,10 +103,10 @@ async function handleDelete(id) {