mirror of
https://github.com/koreanbots/core.git
synced 2025-12-18 15:10:24 +00:00
fix: fixed Footer fixed problem
This commit is contained in:
parent
4e0f121bf6
commit
692b546700
@ -3,7 +3,7 @@ import Container from './Container'
|
|||||||
import Wave from './Wave'
|
import Wave from './Wave'
|
||||||
|
|
||||||
const Footer = ():JSX.Element => {
|
const Footer = ():JSX.Element => {
|
||||||
return <>
|
return <div className='releative'>
|
||||||
<Wave color='currentColor' className='text-white dark:text-discord-dark bg-discord-black'/>
|
<Wave color='currentColor' className='text-white dark:text-discord-dark bg-discord-black'/>
|
||||||
<div className='bottom-0 bg-discord-black text-white'>
|
<div className='bottom-0 bg-discord-black text-white'>
|
||||||
<Container className='w-11/12 lg:w-3/5 pt-10 lg:pt-0 pb-20 lg:flex' ignoreColor>
|
<Container className='w-11/12 lg:w-3/5 pt-10 lg:pt-0 pb-20 lg:flex' ignoreColor>
|
||||||
@ -68,7 +68,7 @@ const Footer = ():JSX.Element => {
|
|||||||
</div>
|
</div>
|
||||||
</Container>
|
</Container>
|
||||||
</div>
|
</div>
|
||||||
</>
|
</div>
|
||||||
}
|
}
|
||||||
|
|
||||||
export default Footer
|
export default Footer
|
||||||
@ -48,7 +48,7 @@ export default function App({ Component, pageProps }: AppProps): JSX.Element {
|
|||||||
<meta name="theme-color" content="#3366FF" />
|
<meta name="theme-color" content="#3366FF" />
|
||||||
</Head>
|
</Head>
|
||||||
<Navbar />
|
<Navbar />
|
||||||
<div className='iu-is-the-best h-screen text-black dark:text-gray-100 bg-white dark:bg-discord-dark'>
|
<div className='iu-is-the-best h-full text-black dark:text-gray-100 bg-white dark:bg-discord-dark'>
|
||||||
<Component {...pageProps} />
|
<Component {...pageProps} />
|
||||||
</div>
|
</div>
|
||||||
<Footer />
|
<Footer />
|
||||||
|
|||||||
@ -28,7 +28,7 @@ class MyDocument extends Document {
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</Head>
|
</Head>
|
||||||
<body className="h-screen text-black dark:text-gray-100 bg-white dark:bg-discord-dark">
|
<body className="h-full text-black dark:text-gray-100 bg-white dark:bg-discord-dark">
|
||||||
<Main />
|
<Main />
|
||||||
<NextScript />
|
<NextScript />
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
@ -7,6 +7,10 @@ html {
|
|||||||
min-height: 100%;
|
min-height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
min-height: 100vh;
|
||||||
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: "Uni Sans Heavy CAPS";
|
font-family: "Uni Sans Heavy CAPS";
|
||||||
src: url("/logofont.otf");
|
src: url("/logofont.otf");
|
||||||
@ -15,3 +19,11 @@ html {
|
|||||||
.logofont {
|
.logofont {
|
||||||
font-family: "Uni Sans Heavy CAPS";
|
font-family: "Uni Sans Heavy CAPS";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.animation-dropdown {
|
||||||
|
animation: dropdown 0.1s linear;
|
||||||
|
}
|
||||||
|
|
||||||
|
i {
|
||||||
|
width: 20px
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user