56 lines
1.8 KiB
Diff
56 lines
1.8 KiB
Diff
From 1e99582df4fd558ed52ee3d3c4b6522b2251000f Mon Sep 17 00:00:00 2001
|
|
From: gitee-cmd <chemingdao@huawei.com>
|
|
Date: Thu, 30 Sep 2021 09:33:56 +0800
|
|
Subject: [PATCH] fix logos' instructions and size
|
|
|
|
---
|
|
aops-web/src/appCore/components/GlobalFooter/index.vue | 2 +-
|
|
aops-web/src/appCore/layouts/BasicLayout.vue | 6 +++++-
|
|
aops-web/src/appCore/layouts/UserLayout.vue | 1 -
|
|
3 files changed, 6 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/aops-web/src/appCore/components/GlobalFooter/index.vue b/aops-web/src/appCore/components/GlobalFooter/index.vue
|
|
index 839ddc8..b485907 100644
|
|
--- a/aops-web/src/appCore/components/GlobalFooter/index.vue
|
|
+++ b/aops-web/src/appCore/components/GlobalFooter/index.vue
|
|
@@ -11,7 +11,7 @@
|
|
</div>
|
|
</template>
|
|
<template v-slot:copyright>
|
|
- logo
|
|
+ <img src="~@/assets/horizontal-left.png" style="height: 20px" class="logo" alt="logo">
|
|
</template>
|
|
</global-footer>
|
|
</template>
|
|
diff --git a/aops-web/src/appCore/layouts/BasicLayout.vue b/aops-web/src/appCore/layouts/BasicLayout.vue
|
|
index e4fd9f8..ca29cdc 100644
|
|
--- a/aops-web/src/appCore/layouts/BasicLayout.vue
|
|
+++ b/aops-web/src/appCore/layouts/BasicLayout.vue
|
|
@@ -139,6 +139,10 @@ export default {
|
|
}
|
|
</script>
|
|
|
|
-<style lang="less">
|
|
+<style lang="less" scoped>
|
|
@import "./BasicLayout.less";
|
|
+.logo {
|
|
+ height: auto;
|
|
+ width: 32px;
|
|
+}
|
|
</style>
|
|
diff --git a/aops-web/src/appCore/layouts/UserLayout.vue b/aops-web/src/appCore/layouts/UserLayout.vue
|
|
index 36826de..15eb79d 100644
|
|
--- a/aops-web/src/appCore/layouts/UserLayout.vue
|
|
+++ b/aops-web/src/appCore/layouts/UserLayout.vue
|
|
@@ -126,7 +126,6 @@ export default {
|
|
.logo {
|
|
height: 80px;
|
|
vertical-align: top;
|
|
- margin-right: 16px;
|
|
border-style: none;
|
|
}
|
|
|
|
--
|
|
2.30.0
|
|
|