调整了视图组件的样式,将主容器的最小高度从屏幕高度修改为60vh,以优化布局和响应式设计。

This commit is contained in:
Phoenix 2025-05-23 13:46:42 +08:00
parent 5ab32ac10a
commit 660f6f16cf

View File

@ -18,7 +18,7 @@ function handleSubmit(e) {
</script> </script>
<template> <template>
<main class="min-h-screen flex flex-col items-center justify-center bg-white relative px-4 py-8"> <main class="min-h-60vh flex flex-col items-center justify-center relative px-4 py-8">
<!-- Card --> <!-- Card -->
<div class="w-full max-w-90vw p-4 bg-white/95 rounded-2xl shadow-lg animate-bounce-in"> <div class="w-full max-w-90vw p-4 bg-white/95 rounded-2xl shadow-lg animate-bounce-in">
<template v-if="!submitted"> <template v-if="!submitted">