From a430284aa21e3ae1f0d5654e55b2ad2852519cc2 Mon Sep 17 00:00:00 2001 From: wwf <yearningwang@iqtogether.com> Date: 星期三, 04 六月 2025 15:17:49 +0800 Subject: [PATCH] 初始化 --- app/init/page.tsx | 17 +++++++++++------ 1 files changed, 11 insertions(+), 6 deletions(-) diff --git a/app/init/page.tsx b/app/init/page.tsx index c3d439f..37ac180 100644 --- a/app/init/page.tsx +++ b/app/init/page.tsx @@ -1,14 +1,19 @@ import React from 'react' +import style from '../signin/page.module.css' import InitPasswordPopup from './InitPasswordPopup' -import cn from '@/utils/classnames' +import classNames from '@/utils/classnames' const Install = () => { return ( - <div className={cn('flex min-h-screen w-full justify-center bg-background-default-burn p-6')}> - <div className={cn('flex w-full shrink-0 flex-col rounded-2xl border border-effects-highlight bg-background-default-subtle')}> - <div className="m-auto block w-96"> - <InitPasswordPopup /> - </div> + <div className={classNames( + style.background, + 'flex w-full min-h-screen', + 'p-4 lg:p-8', + 'gap-x-20', + 'justify-center lg:justify-start', + )}> + <div className="block m-auto w-96"> + <InitPasswordPopup /> </div> </div> ) -- Gitblit v1.8.0