fix: 修改兼容问题
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user