Skip to content

Commit

Permalink
feat: page padding changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mvriu5 committed Sep 2, 2024
1 parent 66a4fb5 commit ba83a45
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/lab/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export default function Home() {

return (
<motion.div
className={"flex flex-col justify-between space-y-4 p-4 lg:px-40 lg:py-16 2xl:px-96 2xl:py-32"}
className={"flex flex-col justify-between space-y-4 p-4 lg:px-[25%] md:py-32 md:px-[15%]"}
initial={{opacity: 0, filter: 'blur(10px)', y: 50}}
animate={{opacity: 1, filter: 'blur(0px)', y: 0}}
transition={{duration: 0.65}}
Expand Down
2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default function Home() {
const router = useRouter();

return (
<div className={"flex flex-col space-y-4 p-4 lg:px-40 lg:py-16 2xl:px-96 2xl:py-32"}>
<div className={"flex flex-col space-y-4 p-4 lg:px-[25%] md:py-32 md:px-[15%]"}>

<div className={"flex flex-row justify-between items-center border-b border-zinc-200 pb-4"}>
<div className={"flex flex-row space-x-4 items-center"}>
Expand Down

0 comments on commit ba83a45

Please sign in to comment.