Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/common/bottomContents/BottomContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default function BottomContainer({
return (
<div className='fixed z-[70] inset-0'>
<div className='absolute inset-0 bg-black bg-opacity-50 ' onClick={() => onClose()}>
<div className='fixed bg-gray700 left-0 right-0 w-full bottom-0 rounded-t-[2.4rem] px-[2rem] py-[4rem] flex flex-col gap-[1.2rem]'>
<div className='fixed bg-gray700 left-0 right-0 w-full bottom-0 rounded-t-[2.4rem] py-[2.8rem] flex flex-col gap-[1.2rem]'>
{children}
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion components/common/dropdowns/mobileDropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export default function MobileDropdown({

{showBottom ? (
<BottomContainer onClose={() => setShowBottom(false)}>
<b className='st2 font-bold px-[2.2rem] pt-[2.8rem] pb-[1.6rem]'>정렬</b>
<b className='st2 font-bold px-[2.2rem] pb-[1.6rem]'>정렬</b>
<ul className='flex flex-col gap-[0.4rem]'>
{dropdownOptions.map((option, index) => (
<li
Expand Down
2 changes: 1 addition & 1 deletion components/common/title/ArrowWithTitle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const ArrowWithTitle: FC<ArrowWithTitleProps> = ({
iconSize = { width: 7, height: 14 },
}) => {
return (
<div className='grid grid-flow-col items-baseline gap-6 justify-between'>
<div className='grid grid-flow-col items-baseline gap-6 justify-between pb-[2.45rem]'>
<p className={cn(className, ArrowWithTitleVariants({ variant }))}>{title}</p>

<div className='flex items-center'>
Expand Down
2 changes: 1 addition & 1 deletion components/features/main/dynamicTechBlogComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export default function DynamicTechBlogComponent({

const { techBlogData, isFetchingNextPage, hasNextPage, status, onIntersect } = data;

const SCROLL_CLASS = isMobile ? '' : 'relative overflow-y-scroll scrollbar-hide max-h-[50rem]';
const SCROLL_CLASS = isMobile ? '' : 'relative overflow-y-scroll scrollbar-hide max-h-[47rem]';

useObserver({
target: bottomDiv,
Expand Down
3 changes: 1 addition & 2 deletions pages/main/index.page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ export default function Index() {
variant='mainTitle'
iconText='바로가기'
routeURL={PICK_PATH}
className='pb-[2.45rem]'
/>
<QueryErrorBoundary
fallbackRender={({ handleRetryClick }) => (
Expand Down Expand Up @@ -98,4 +97,4 @@ export function getStaticProps() {
meta: META.MAIN,
},
};
}
}