Skip to content

Commit

Permalink
feat: add padding bottom to layout
Browse files Browse the repository at this point in the history
  • Loading branch information
zkazharan committed Aug 27, 2024
1 parent d4f808f commit 13fc692
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/(main)/discover/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default function Discover() {
<Header />
<div className="w-full relative h-screen">
<BgGradient />
<div className={`${styles.settingsContent} w-full max-w-[calc(100vw-120px)] md:max-w-[calc(100vw-268px)] lg:max-w-[calc(100vw-328px)] xl:max-w-[1016px] overflow-y-auto h-screen`}>
<div className={`${styles.settingsContent} w-full max-w-[calc(100vw-120px)] md:max-w-[calc(100vw-268px)] lg:max-w-[calc(100vw-328px)] xl:max-w-[1016px] pb-10 overflow-y-auto h-screen`}>
{
contentFilter === 0 ? (
<Project />
Expand Down
2 changes: 1 addition & 1 deletion src/app/(main)/home/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default function Home() {
<div className="w-full relative h-screen">
<BgGradient />
<div
className={`${styles.settingsContent} w-full max-w-[calc(100vw-120px)] md:max-w-[calc(100vw-268px)] lg:max-w-[calc(100vw-328px)] xl:max-w-[1016px] overflow-y-auto h-screen`}
className={`${styles.settingsContent} w-full max-w-[calc(100vw-120px)] md:max-w-[calc(100vw-268px)] lg:max-w-[calc(100vw-328px)] xl:max-w-[1016px] pb-10 overflow-y-auto h-screen`}
>
{
contentFilter === 0 ? (
Expand Down

0 comments on commit 13fc692

Please sign in to comment.