Skip to content

Commit

Permalink
change the height to full screen height
Browse files Browse the repository at this point in the history
  • Loading branch information
CloudLun committed Dec 7, 2023
1 parent c25bc65 commit 0fc0e5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export default function Home() {

return (
<>
<div className='relative w-[100vw] max-h-[100vh] leading-[1.2]'>
<div className='relative w-[100vw] h-[100vh] leading-[1.2]'>
{
(windowSize.width < 820) &&
<div className='absolute top-0 left-0 flex justify-center items-center w-full h-full leading-[1.2] font-bold text-headline text-black bg-background_blue z-[100]'>
Expand Down
2 changes: 1 addition & 1 deletion next.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
trailingSlash: true,
output: "export",
// output: "export",
};

module.exports = nextConfig;

0 comments on commit 0fc0e5c

Please sign in to comment.