-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor: 레이아웃 수정 및 라우터 정리 * feat: 레이아웃 조건 수정 * feat: 인디케이터 추가 * feat: max-width 440으로 수정 * feat: 상품 페이지 레이아웃 스타일 수정 * feat: 검색 페이지 레이아웃 수정 * feat: 꿀조합 상세 페이지 레이아웃 수정 * feat: 리뷰 등록 페이지 레이아웃 수정 * feat: 꿀조합 작성 위치 수정 * feat: 로고 수정
- Loading branch information
1 parent
c0a87ba
commit 525adb7
Showing
37 changed files
with
351 additions
and
309 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { container } from './indicator.css'; | ||
|
||
const Indicator = () => { | ||
return <div className={container} aria-hidden />; | ||
}; | ||
|
||
export default Indicator; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { style } from '@vanilla-extract/css'; | ||
|
||
export const container = style({ | ||
height: 34, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
src/components/Layout/DefaultLayout.tsx → src/components/Layout/Layout.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
import type { PropsWithChildren } from 'react'; | ||
|
||
import { defaultLayout } from './layout.css'; | ||
import { main } from './layout.css'; | ||
import Header from '../Common/Header/Header'; | ||
import NavigationBar from '../Common/NavigationBar/NavigationBar'; | ||
|
||
const DefaultLayout = ({ children }: PropsWithChildren) => { | ||
const Layout = ({ children }: PropsWithChildren) => { | ||
return ( | ||
<> | ||
<Header /> | ||
<main id="main" className={defaultLayout}> | ||
<main id="main" className={main}> | ||
{children} | ||
</main> | ||
<NavigationBar /> | ||
</> | ||
); | ||
}; | ||
|
||
export default DefaultLayout; | ||
export default Layout; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
export { default as DefaultLayout } from './DefaultLayout'; | ||
export { default as MinimalLayout } from './MinimalLayout'; | ||
export { default as Layout } from './Layout'; | ||
export { default as AuthLayout } from './AuthLayout'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
import { style } from '@vanilla-extract/css'; | ||
|
||
export const defaultLayout = style({ | ||
export const main = style({ | ||
padding: '50px 0 70px', | ||
}); | ||
|
||
export const minimalLayout = style({ | ||
paddingTop: 50, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.