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

(cherry picked from commit 984351fbf0)
This commit is contained in:
owen 2023-11-05 09:47:54 +08:00 committed by shizhong
parent 8cb041b57a
commit f526675293

View File

@ -19,6 +19,6 @@ const title = computed(() => appStore.getTitle)
:class="prefixCls" :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)]" 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> </div>
</template> </template>