feat: 优化 App.vue 布局,调整组件间距和宽度设置
Some checks failed
/ test (push) Failing after 15s
/ surge (push) Successful in 42s

This commit is contained in:
严浩
2024-11-23 22:33:14 +08:00
parent a47d6a6a19
commit c9601cc680

View File

@ -9,11 +9,11 @@ import AllCustomPrimevue from './all-custom-primevue/all-custom-primevue.vue'
<ZodForm v-if="false" /> <ZodForm v-if="false" />
<TutorialForm v-if="false" /> <TutorialForm v-if="false" />
<div class="flex flex-col md:flex-row items-start"> <div class="flex flex-col md:flex-row items-start p-4 gap-4">
<div class="md:w-1/2 p-4 bg-white rounded-lg shadow-md dark:bg-gray-800 dark:text-white m-4"> <div class="md:w-1/2 p-4 w-full bg-white rounded-lg shadow-md dark:bg-gray-800 dark:text-white">
<AllCustom /> <AllCustom />
</div> </div>
<div class="md:w-1/2 p-4 bg-white rounded-lg shadow-md dark:bg-gray-800 dark:text-white m-4"> <div class="md:w-1/2 p-4 w-full bg-white rounded-lg shadow-md dark:bg-gray-800 dark:text-white">
<AllCustomPrimevue /> <AllCustomPrimevue />
</div> </div>
</div> </div>