diff --git a/src/App.vue b/src/App.vue index 2754ebf..f21bd0b 100644 --- a/src/App.vue +++ b/src/App.vue @@ -117,7 +117,7 @@ async function handleLogout() { align-items: center; gap: 20px; padding: 0 24px; - height: 60px; + height: 52px; background-color: var(--ac-header-bg); color: var(--ac-header-text); border-bottom: 1px solid var(--ac-border); @@ -257,7 +257,7 @@ async function handleLogout() { .app-main { margin: 24px auto; padding: 0 16px; - min-height: calc(100vh - 60px - 80px); + min-height: calc(100vh - 52px - 80px); max-width: 960px; } @@ -265,7 +265,7 @@ async function handleLogout() { max-width: none; margin: 0; padding: 0; - min-height: calc(100vh - 60px); + min-height: calc(100vh - 52px); } .wave-decoration { diff --git a/src/views/LoginView.vue b/src/views/LoginView.vue index 77ac959..ee406e7 100644 --- a/src/views/LoginView.vue +++ b/src/views/LoginView.vue @@ -53,7 +53,7 @@ async function onSubmit() { .login-wrap { display: flex; justify-content: center; - padding-top: 60px; + padding-top: 52px; } .login-form { diff --git a/src/views/RegisterView.vue b/src/views/RegisterView.vue index bc90e70..94c029e 100644 --- a/src/views/RegisterView.vue +++ b/src/views/RegisterView.vue @@ -78,7 +78,7 @@ async function onSubmit() { .register-wrap { display: flex; justify-content: center; - padding-top: 60px; + padding-top: 52px; } .register-form { diff --git a/src/views/admin/AdminLayout.vue b/src/views/admin/AdminLayout.vue index aabf61a..e6db151 100644 --- a/src/views/admin/AdminLayout.vue +++ b/src/views/admin/AdminLayout.vue @@ -27,7 +27,7 @@ const auth = useAuthStore()