mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-30 07:26:45 +00:00
footer bug
This commit is contained in:
@@ -11,7 +11,7 @@ export const Footer = (props) => {
|
|||||||
return currentYear
|
return currentYear
|
||||||
})()
|
})()
|
||||||
|
|
||||||
return <footer className="relative w-full bg-white px-6 border-t dark:border-hexo-black-gray dark:bg-hexo-black-gray ">
|
return <footer className="z-10 relative w-full bg-white px-6 border-t dark:border-hexo-black-gray dark:bg-hexo-black-gray ">
|
||||||
<DarkModeButton className='text-center pt-4'/>
|
<DarkModeButton className='text-center pt-4'/>
|
||||||
|
|
||||||
<div className="container mx-auto max-w-4xl py-6 md:flex flex-wrap md:flex-no-wrap md:justify-between items-center text-sm">
|
<div className="container mx-auto max-w-4xl py-6 md:flex flex-wrap md:flex-no-wrap md:justify-between items-center text-sm">
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ const Footer = ({ title }) => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<footer
|
<footer
|
||||||
className='relative dark:bg-black flex-shrink-0 bg-hexo-light-gray justify-center text-center m-auto w-full leading-6 text-gray-600 dark:text-gray-100 text-sm p-6'
|
className='relative z-10 dark:bg-black flex-shrink-0 bg-hexo-light-gray justify-center text-center m-auto w-full leading-6 text-gray-600 dark:text-gray-100 text-sm p-6'
|
||||||
>
|
>
|
||||||
<DarkModeButton/>
|
<DarkModeButton/>
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ const Footer = ({ title }) => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<footer
|
<footer
|
||||||
className='relative dark:bg-black flex-shrink-0 bg-indigo-700 text-gray-300 justify-center text-center m-auto w-full leading-6 dark:text-gray-100 text-sm p-6'
|
className='relative z-10 dark:bg-black flex-shrink-0 bg-indigo-700 text-gray-300 justify-center text-center m-auto w-full leading-6 dark:text-gray-100 text-sm p-6'
|
||||||
>
|
>
|
||||||
<DarkModeButton/>
|
<DarkModeButton/>
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ const Footer = ({ title }) => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<footer
|
<footer
|
||||||
className='dark:bg-hexo-black-gray flex-shrink-0 justify-center text-center m-auto w-full leading-6 text-gray-400 text-sm p-6 relative'
|
className='z-10 dark:bg-hexo-black-gray flex-shrink-0 justify-center text-center m-auto w-full leading-6 text-gray-400 text-sm p-6 relative'
|
||||||
>
|
>
|
||||||
<DarkModeButton/>
|
<DarkModeButton/>
|
||||||
<i className='fas fa-copyright' /> {`${copyrightDate}`} <span><i className='mx-1 animate-pulse fas fa-heart'/> <a href={BLOG.LINK} className='underline font-bold text-gray-500 dark:text-gray-300 '>{BLOG.AUTHOR}</a>.<br/>
|
<i className='fas fa-copyright' /> {`${copyrightDate}`} <span><i className='mx-1 animate-pulse fas fa-heart'/> <a href={BLOG.LINK} className='underline font-bold text-gray-500 dark:text-gray-300 '>{BLOG.AUTHOR}</a>.<br/>
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ const Footer = ({ title }) => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<footer
|
<footer
|
||||||
className='relative dark:bg-gray-800 flex-shrink-0 justify-center text-center m-auto w-full leading-6 text-sm p-6 bg-white dark:text-gray-400'
|
className='relative z-10 dark:bg-gray-800 flex-shrink-0 justify-center text-center m-auto w-full leading-6 text-sm p-6 bg-white dark:text-gray-400'
|
||||||
>
|
>
|
||||||
<DarkModeButton/>
|
<DarkModeButton/>
|
||||||
<span>
|
<span>
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ export const Footer = (props) => {
|
|||||||
})()
|
})()
|
||||||
|
|
||||||
return <footer
|
return <footer
|
||||||
className={`relative mt-6 flex-shrink-0 m-auto w-full text-gray-500 dark:text-gray-400 transition-all ${
|
className={`z-10 relative mt-6 flex-shrink-0 m-auto w-full text-gray-500 dark:text-gray-400 transition-all ${
|
||||||
!fullWidth ? 'max-w-2xl px-4' : 'px-4 md:px-24'
|
!fullWidth ? 'max-w-2xl px-4' : 'px-4 md:px-24'
|
||||||
}`}
|
}`}
|
||||||
>
|
>
|
||||||
|
|||||||
Reference in New Issue
Block a user