fix: 修改兼容问题

This commit is contained in:
2025-09-02 06:17:20 -07:00
parent 3bbf9b00c2
commit 135d78fc0d
14 changed files with 537 additions and 486 deletions
+4 -1
View File
@@ -37,7 +37,10 @@ export default function Header() {
{!user && (
<Link
href='#'
onClick={() => openLoginDialog()}
onClick={() => {
console.log('登录');
openLoginDialog();
}}
className={cn(
buttonVariants({
size: 'lg',
@@ -11,7 +11,7 @@ export default function FooterCopyright() {
const t = useTranslations('auth');
return (
<footer className={'fixed bottom-6 z-[1] w-full text-xs sm:text-sm'}>
<footer className={'fixed bottom-6 z-40 w-full text-xs sm:text-sm'}>
<div className={'container relative flex items-center justify-center text-right sm:block'}>
<Image
src={'./logo.png'}
@@ -2,7 +2,7 @@
const FullScreenVideoBackground = ({}: {}) => {
return (
<div className='h-full w-full overflow-hidden'>
<div className='fixed h-full w-full overflow-hidden indent-0'>
<video
autoPlay
muted