fix(projects): 修复globalFooter适应暗黑模式

This commit is contained in:
Soybean
2021-10-21 18:29:32 +08:00
parent b2854d57e8
commit 93f08d9067
5 changed files with 78 additions and 73 deletions

View File

@ -1,9 +1,9 @@
<template>
<div class="p-6px">
<div class="flex justify-between h-360px">
<div class="flex-1 min-w-360px h-full bg-white rounded-16px"></div>
<div class="flex-1 min-w-360px h-full bg-white dark:bg-dark rounded-16px"></div>
<div class="w-16px"></div>
<div class="w-360px h-full bg-white rounded-16px"></div>
<div class="w-360px h-full bg-white dark:bg-dark rounded-16px"></div>
</div>
</div>
</template>