Ver Fonte

修复页面中心内容区会出现滚动条的问题: 底部版权栏的P标签有默认的margin导致

owen há 1 ano atrás
pai
commit
984351fbf0
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      src/layout/components/Footer/src/Footer.vue

+ 1 - 1
src/layout/components/Footer/src/Footer.vue

@@ -19,6 +19,6 @@ const title = computed(() => appStore.getTitle)
     :class="prefixCls"
     class="h-[var(--app-footer-height)] bg-[var(--app-content-bg-color)] text-center leading-[var(--app-footer-height)] text-[var(--el-text-color-placeholder)] dark:bg-[var(--el-bg-color)]"
   >
-    <p style="font-size: 14px">Copyright ©2022-{{ title }}</p>
+    <span class="text-14px">Copyright ©2022-{{ title }}</span>
   </div>
 </template>