Skip to content

Commit 1782405

Browse files
committed
style: EmptyState 및 Footer 여백 조정
1 parent 0100122 commit 1782405

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/pages/repair/ui/RepairPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const RepairPage = () => {
1919
}
2020

2121
if (isSearching) {
22-
return <div className="min-h-[200px] w-full" />;
22+
return <div className="min-h-[240px] w-full" />;
2323
}
2424

2525
if (shops.length === 0) {

src/shared/ui/EmptyState/EmptyState.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export interface EmptyStateProps {
77

88
export const EmptyState = ({ message, className }: EmptyStateProps) => {
99
return (
10-
<div className={cn('rounded-m flex min-h-[200px] w-full items-center justify-center bg-gray-50', className)}>
10+
<div className={cn('rounded-m flex min-h-[240px] w-full items-center justify-center bg-gray-50', className)}>
1111
<p className="typo-body-2 text-gray-400">{message}</p>
1212
</div>
1313
);

src/shared/ui/Footer/Footer.styles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export const footerStyles = {
2-
root: ['w-full', 'bg-white', 'py-[60px]', 'border-t', 'border-gray-100', 'mt-[72px]'].join(' '),
2+
root: ['w-full', 'bg-white', 'py-[60px]', 'border-t', 'border-gray-100', 'mt-[168px]'].join(' '),
33
inner: ['max-w-[1440px]', 'mx-auto', 'px-5', 'xl:px-[120px]', 'flex', 'flex-col', 'gap-[30px]'].join(' '),
44
logo: ['w-[160px]', 'h-[36px]', 'mb-[10px]'].join(' '),
55

0 commit comments

Comments
 (0)